Trait GLContext ExtManual
Source pub trait GLContextExtManual: IsA<GLContext> + 'static {
// Provided methods
fn gl_context(&self) -> uintptr_t { ... }
fn proc_address(&self, name: &str) -> uintptr_t { ... }
fn thread_add<F: FnOnce(&Self) + Send>(&self, func: F) { ... }
}Provided Methods§
Sourcefn gl_context(&self) -> uintptr_t
fn gl_context(&self) -> uintptr_t
Sourcefn proc_address(&self, name: &str) -> uintptr_t
fn proc_address(&self, name: &str) -> uintptr_t
Sourcefn thread_add<F: FnOnce(&Self) + Send>(&self, func: F)
fn thread_add<F: FnOnce(&Self) + Send>(&self, func: F)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".