pub trait ObjectSubclassIsExt: ObjectSubclassIs {
// Required method
fn imp(&self) -> &Self::Subclass;
}
Expand description
Trait implemented by any type implementing ObjectSubclassIs
to return the implementation, private Rust struct.
Required Methods§
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.