[][src]Struct uwp_transcode::transcoder::AsyncActionProgressHandler

#[repr(transparent)]pub struct AsyncActionProgressHandler<TProgress> where
    TProgress: RuntimeType + 'static, 
{ /* fields omitted */ }

Implementations

impl<TProgress> AsyncActionProgressHandler<TProgress> where
    TProgress: 'static + RuntimeType, 
[src]

pub fn invoke<'a, T0__, T1__>(
    &self,
    async_info: T0__,
    progress_info: T1__
) -> Result<(), Error> where
    T0__: Into<Param<'a, IAsyncActionWithProgress<TProgress>>>,
    T1__: Into<Param<'a, TProgress>>, 
[src]

pub fn new<F>(invoke: F) -> AsyncActionProgressHandler<TProgress> where
    F: 'static + FnMut(&IAsyncActionWithProgress<TProgress>, &TProgress) -> Result<(), Error>, 
[src]

Trait Implementations

impl<TProgress> AbiTransferable for AsyncActionProgressHandler<TProgress> where
    TProgress: 'static + RuntimeType, 
[src]

type Abi = Option<NonNullRawComPtr<AsyncActionProgressHandler<TProgress>>>

impl<TProgress> Clone for AsyncActionProgressHandler<TProgress> where
    TProgress: 'static + RuntimeType, 
[src]

impl<TProgress> ComInterface for AsyncActionProgressHandler<TProgress> where
    TProgress: 'static + RuntimeType, 
[src]

type VTable = abi_AsyncActionProgressHandler<TProgress>

impl<TProgress> Debug for AsyncActionProgressHandler<TProgress> where
    TProgress: 'static + RuntimeType, 
[src]

impl<TProgress> Default for AsyncActionProgressHandler<TProgress> where
    TProgress: 'static + RuntimeType, 
[src]

impl<TProgress> PartialEq<AsyncActionProgressHandler<TProgress>> for AsyncActionProgressHandler<TProgress> where
    TProgress: 'static + RuntimeType, 
[src]

impl<TProgress> RuntimeType for AsyncActionProgressHandler<TProgress> where
    TProgress: 'static + RuntimeType, 
[src]

Auto Trait Implementations

impl<TProgress> RefUnwindSafe for AsyncActionProgressHandler<TProgress> where
    TProgress: RefUnwindSafe

impl<TProgress> !Send for AsyncActionProgressHandler<TProgress>

impl<TProgress> !Sync for AsyncActionProgressHandler<TProgress>

impl<TProgress> Unpin for AsyncActionProgressHandler<TProgress> where
    TProgress: Unpin

impl<TProgress> UnwindSafe for AsyncActionProgressHandler<TProgress> where
    TProgress: RefUnwindSafe + UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.