pub trait IsExternal {
// Required method
fn is_external(&self, lib: &Library) -> bool;
}Expand description
Checks if type is external aka opaque type.
Required Methods§
fn is_external(&self, lib: &Library) -> bool
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".