pub trait ContextGLExt {
// Required methods
fn gl_display(&self) -> Option<GLDisplay>;
fn set_gl_display<'a, T: IsA<GLDisplay>>(
&self,
display: impl Into<Option<&'a T>>,
);
}
Required Methods§
fn gl_display(&self) -> Option<GLDisplay>
fn set_gl_display<'a, T: IsA<GLDisplay>>( &self, display: impl Into<Option<&'a T>>, )
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.