[][src]Struct windows_media_transcoding_bindings::windows::foundation::collections::IIterator

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

Implementations

impl<T: RuntimeType + 'static> IIterator<T>[src]

pub fn current(&self) -> Result<T>[src]

pub fn has_current(&self) -> Result<bool>[src]

pub fn move_next(&self) -> Result<bool>[src]

pub fn get_many(&self, items: &mut [T]) -> Result<u32>[src]

Trait Implementations

impl<T: RuntimeType + 'static> AbiTransferable for IIterator<T>[src]

type Abi = RawComPtr<Self>

impl<T: RuntimeType + 'static> Clone for IIterator<T>[src]

impl<T: RuntimeType + 'static> ComInterface for IIterator<T>[src]

type VTable = abi_IIterator<T>

impl<T: RuntimeType + 'static> Debug for IIterator<T>[src]

impl<T: RuntimeType + 'static> Default for IIterator<T>[src]

impl<T: RuntimeType + 'static, '_> From<&'_ IIterator<T>> for Object[src]

impl<T: RuntimeType + 'static> From<IIterator<T>> for Object[src]

impl<T: RuntimeType> Iterator for IIterator<T>[src]

type Item = T

The type of the elements being iterated over.

impl<T: RuntimeType + 'static> PartialEq<IIterator<T>> for IIterator<T>[src]

impl<T: RuntimeType + 'static> RuntimeType for IIterator<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for IIterator<T> where
    T: RefUnwindSafe

impl<T> !Send for IIterator<T>

impl<T> !Sync for IIterator<T>

impl<T> Unpin for IIterator<T> where
    T: Unpin

impl<T> UnwindSafe for IIterator<T> where
    T: 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<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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.