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

Provided Methods§

source

fn from_instance<T: IsA<Object>>(obj: &T) -> &Self

Get interface from an instance.

This will panic if obj does not implement the interface.

Implementors§