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

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

Implementations

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

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

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

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

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

pub fn set_at<'a, T1__: Into<Param<'a, T>>>(
    &self,
    index: u32,
    value: T1__
) -> Result<()>
[src]

pub fn insert_at<'a, T1__: Into<Param<'a, T>>>(
    &self,
    index: u32,
    value: T1__
) -> Result<()>
[src]

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

pub fn append<'a, T0__: Into<Param<'a, T>>>(&self, value: T0__) -> Result<()>[src]

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

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

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

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

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

Trait Implementations

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

type Abi = RawComPtr<Self>

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

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

type VTable = abi_IVector<T>

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

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

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

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

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

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

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

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

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

type Item = T

The type of the elements being iterated over.

type IntoIter = VectorIterator<Self::Item>

Which kind of iterator are we turning this into?

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

type Item = T

The type of the elements being iterated over.

type IntoIter = VectorIterator<Self::Item>

Which kind of iterator are we turning this into?

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

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

Auto Trait Implementations

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

impl<T> !Send for IVector<T>

impl<T> !Sync for IVector<T>

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

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