pub trait GLFramebufferExt:
IsA<GLFramebuffer>
+ Sealed
+ 'static {
// Provided methods
unsafe fn attach(&self, attachment_point: u32, mem: &mut GLBaseMemory) { ... }
fn bind(&self) { ... }
fn effective_dimensions(&self) -> (u32, u32) { ... }
fn id(&self) -> u32 { ... }
}
Provided Methods§
unsafe fn attach(&self, attachment_point: u32, mem: &mut GLBaseMemory)
fn bind(&self)
fn effective_dimensions(&self) -> (u32, u32)
fn id(&self) -> u32
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.