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.
Required Associated Types
source
type FromObjectType
Required Methods
source