pub trait GLDisplayExtManual: Sealed + IsA<GLDisplay> + 'static {
    // Provided methods
    fn handle(&self) -> usize { ... }
    fn ensure_context(
        &self,
        other_context: Option<&impl IsA<GLContext>>,
        context: &mut Option<GLContext>
    ) -> Result<(), Error> { ... }
}

Provided Methods§

source

fn handle(&self) -> usize

source

fn ensure_context( &self, other_context: Option<&impl IsA<GLContext>>, context: &mut Option<GLContext> ) -> Result<(), Error>

Available on crate feature v1_24 only.

Object Safety§

This trait is not object safe.

Implementors§