[][src]Trait winrt::RtDefaultConstructible

pub trait RtDefaultConstructible {
    fn new() -> ComPtr<Self>
    where
        Self: Sized + RtActivatable<IActivationFactory> + ComInterface
; }

Enables easy access to a default constructor, using IActivationFactory under the hood.

Required methods

fn new() -> ComPtr<Self> where
    Self: Sized + RtActivatable<IActivationFactory> + ComInterface

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

Loading content...

Implementors

impl<T> RtDefaultConstructible for T where
    T: RtActivatable<IActivationFactory>, 
[src]

Loading content...