pub trait TObj: SupportsInterfaces {
// Required method
fn obj(&self) -> &Obj;
}Expand description
Represents Obj or any of its inheritors.
Usually obtained by using
dyn_cast_rc/dyn_cast_arc
on a derived trait.
pub trait TObj: SupportsInterfaces {
// Required method
fn obj(&self) -> &Obj;
}Represents Obj or any of its inheritors.
Usually obtained by using
dyn_cast_rc/dyn_cast_arc
on a derived trait.