pub trait GLAreaImplExt: Sealed + ObjectSubclass {
// Provided methods
fn parent_create_context(&self) -> Option<GLContext> { ... }
fn parent_render(&self, context: &GLContext) -> Propagation { ... }
fn parent_resize(&self, width: i32, height: i32) { ... }
}
Provided Methods§
fn parent_create_context(&self) -> Option<GLContext>
fn parent_render(&self, context: &GLContext) -> Propagation
fn parent_resize(&self, width: i32, height: i32)
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.