pub trait ObjectSubclassIsExt: ObjectSubclassIs {
    fn imp(&self) -> &Self::Subclass;
}
Expand description

Trait implemented by any type implementing ObjectSubclassIs to return the implementation, private Rust struct.

Required methods

Returns the implementation (the private Rust struct) of this class instance

Implementors