pub trait FromObject {
type FromObjectType;
fn from_object(obj: &Self::FromObjectType) -> &Self;
}Expand description
Helper trait for macros to access a subclass or its wrapper.
pub trait FromObject {
type FromObjectType;
fn from_object(obj: &Self::FromObjectType) -> &Self;
}Helper trait for macros to access a subclass or its wrapper.