[−][src]Struct windows::IActivationFactory
WinRT classes have a supporting factory object that implements IActivationFactory to create a new
instance of the WinRT class with some default state. IActivationFactory represents the
IActivationFactory
interface.
Implementations
impl IActivationFactory[src]
pub fn activate_instance<I: Interface>(&self) -> Result<I>[src]
Creates an instance of the WinRT class associated with the factory object.
The activate_instance method corresponds to the "default constructor" in languages like C# and C++.
Trait Implementations
impl Clone for IActivationFactory[src]
fn clone(&self) -> IActivationFactory[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for IActivationFactory[src]
impl Eq for IActivationFactory[src]
impl Interface for IActivationFactory[src]
type Vtable = IActivationFactory_vtable
const IID: Guid[src]
unsafe fn vtable(&self) -> &Self::Vtable[src]
unsafe fn assume_vtable<T: Interface>(&self) -> &T::Vtable[src]
fn cast<T: Interface>(&self) -> Result<T>[src]
impl PartialEq<IActivationFactory> for IActivationFactory[src]
fn eq(&self, other: &IActivationFactory) -> bool[src]
fn ne(&self, other: &IActivationFactory) -> bool[src]
impl StructuralEq for IActivationFactory[src]
impl StructuralPartialEq for IActivationFactory[src]
Auto Trait Implementations
impl RefUnwindSafe for IActivationFactory[src]
impl !Send for IActivationFactory[src]
impl !Sync for IActivationFactory[src]
impl Unpin for IActivationFactory[src]
impl UnwindSafe for IActivationFactory[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,