Trait libpanel::subclass::prelude::ObjectSubclassExt
source · pub trait ObjectSubclassExt: ObjectSubclass {
// Required methods
fn instance(&self) -> Self::Type;
fn from_instance(obj: &Self::Type) -> &Self;
fn instance_data<U>(&self, type_: Type) -> Option<&U>
where U: Any + Send + Sync + 'static;
}
Expand description
Extension methods for all ObjectSubclass
impls.
Required Methods§
sourcefn from_instance(obj: &Self::Type) -> &Self
fn from_instance(obj: &Self::Type) -> &Self
Returns the implementation from an instance.