logo
pub trait ObjectInterfaceExt: ObjectInterface {
    fn from_instance<T>(obj: &T) -> &Self
    where
        T: IsA<Object>
, { ... } }

Provided methods

Get interface from an instance.

This will panic if obj does not implement the interface.

Implementors