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

Provided methods

Get interface from an instance.

This will panic if obj does not implement the interface.

Implementors