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§

Required Methods§

Implementors§