pub trait ResolverInterface {
// Required methods
unsafe fn load_symbol_unconstrainted<T: FromPtr>(&self, name: &CStr) -> T;
unsafe fn load_function_unconstrainted<F: PFN>(&self) -> F;
}
Available on crate feature
Implements
only.Required Methods§
unsafe fn load_symbol_unconstrainted<T: FromPtr>(&self, name: &CStr) -> T
unsafe fn load_function_unconstrainted<F: PFN>(&self) -> F
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.