Trait winrt::RtActivatable [] [src]

pub trait RtActivatable<Interface>: RtNamedClass {
    fn get_activation_factory() -> ComPtr<Interface> where Interface: RtInterface + ComIid { ... }
    fn new() -> ComPtr<Self> where Self: Sized + RtActivatable<IActivationFactory> + ComInterface { ... }
}

Provided Methods

Returns a factory object to create instances of this class or to call static methods.

Uses the default constructor to create an instance of this class.

Implementors