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

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

Implementations

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

pub fn get_at(&self, index: u32) -> Result<T>[src]

pub fn size(&self) -> Result<u32>[src]

pub fn index_of<'a, T0__: Into<Param<'a, T>>>(
    &self,
    value: T0__,
    index: &mut u32
) -> Result<bool>
[src]

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

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

Trait Implementations

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

type Abi = RawComPtr<Self>

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

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

type VTable = abi_IVectorView<T>

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

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

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

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

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

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

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

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

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

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

impl<'a, T: RuntimeType + 'static> Into<Param<'a, IIterable<T>>> for IVectorView<T>[src]

impl<'a, T: RuntimeType + 'static> Into<Param<'a, IIterable<T>>> for &'a IVectorView<T>[src]

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

type Item = T

The type of the elements being iterated over.

type IntoIter = VectorViewIterator<Self::Item>

Which kind of iterator are we turning this into?

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

type Item = T

The type of the elements being iterated over.

type IntoIter = VectorViewIterator<Self::Item>

Which kind of iterator are we turning this into?

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

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

Auto Trait Implementations

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

impl<T> !Send for IVectorView<T>

impl<T> !Sync for IVectorView<T>

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

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