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

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

Implementations

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

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

Trait Implementations

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

type Abi = RawComPtr<Self>

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

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

type VTable = abi_IIterable<T>

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

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

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

impl<K: RuntimeType + 'static, V: RuntimeType + 'static, '_> From<&'_ IMap<K, V>> for IIterable<IKeyValuePair<K, V>>[src]

impl<K: RuntimeType + 'static, V: RuntimeType + 'static, '_> From<&'_ IMapView<K, V>> for IIterable<IKeyValuePair<K, V>>[src]

impl<K: RuntimeType + 'static, V: RuntimeType + 'static, '_> From<&'_ IObservableMap<K, V>> for IIterable<IKeyValuePair<K, V>>[src]

impl<'_> From<&'_ IPropertySet> for IIterable<IKeyValuePair<HString, Object>>[src]

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

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

impl<'_> From<&'_ IWwwFormUrlDecoderRuntimeClass> for IIterable<IWwwFormUrlDecoderEntry>[src]

impl<'_> From<&'_ MediaPropertySet> for IIterable<IKeyValuePair<Guid, Object>>[src]

impl<'_> From<&'_ WwwFormUrlDecoder> for IIterable<IWwwFormUrlDecoderEntry>[src]

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

impl<K: RuntimeType + 'static, V: RuntimeType + 'static> From<IMap<K, V>> for IIterable<IKeyValuePair<K, V>>[src]

impl<K: RuntimeType + 'static, V: RuntimeType + 'static> From<IMapView<K, V>> for IIterable<IKeyValuePair<K, V>>[src]

impl<K: RuntimeType + 'static, V: RuntimeType + 'static> From<IObservableMap<K, V>> for IIterable<IKeyValuePair<K, V>>[src]

impl From<IPropertySet> for IIterable<IKeyValuePair<HString, Object>>[src]

impl<T: RuntimeType + 'static> From<IVector<T>> for IIterable<T>[src]

impl<T: RuntimeType + 'static> From<IVectorView<T>> for IIterable<T>[src]

impl From<IWwwFormUrlDecoderRuntimeClass> for IIterable<IWwwFormUrlDecoderEntry>[src]

impl From<MediaPropertySet> for IIterable<IKeyValuePair<Guid, Object>>[src]

impl From<WwwFormUrlDecoder> for IIterable<IWwwFormUrlDecoderEntry>[src]

impl<T: RuntimeType> IntoIterator for IIterable<T>[src]

type Item = T

The type of the elements being iterated over.

type IntoIter = IIterator<Self::Item>

Which kind of iterator are we turning this into?

impl<'a, T: RuntimeType> IntoIterator for &'a IIterable<T>[src]

type Item = T

The type of the elements being iterated over.

type IntoIter = IIterator<Self::Item>

Which kind of iterator are we turning this into?

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

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

Auto Trait Implementations

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

impl<T> !Send for IIterable<T>

impl<T> !Sync for IIterable<T>

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

impl<T> UnwindSafe for IIterable<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.