[−][src]Struct windows_media_transcoding_bindings::windows::foundation::collections::IVector
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]
&self,
value: T0__,
index: &mut u32
) -> Result<bool>
pub fn set_at<'a, T1__: Into<Param<'a, T>>>(
&self,
index: u32,
value: T1__
) -> Result<()>[src]
&self,
index: u32,
value: T1__
) -> Result<()>
pub fn insert_at<'a, T1__: Into<Param<'a, T>>>(
&self,
index: u32,
value: T1__
) -> Result<()>[src]
&self,
index: u32,
value: T1__
) -> Result<()>
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>
fn get_abi(&self) -> Self::Abi[src]
fn set_abi(&mut self) -> *mut Self::Abi[src]
fn from_abi(abi: &Self::Abi) -> &Self
fn from_mut_abi(abi: &mut Self::Abi) -> &mut Self
unsafe fn slice_from_abi<'a>(abi: *const Self::Abi, len: usize) -> &'a [Self]
unsafe fn slice_from_mut_abi<'a>(
abi: *mut Self::Abi,
len: usize
) -> &'a mut [Self]
abi: *mut Self::Abi,
len: usize
) -> &'a mut [Self]
fn into_abi(self) -> Self::Abi
impl<T: RuntimeType + 'static> Clone for IVector<T>[src]
fn clone(&self) -> Self[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl<T: RuntimeType + 'static> ComInterface for IVector<T>[src]
type VTable = abi_IVector<T>
fn iid() -> Guid[src]
fn as_iunknown(&self) -> Option<NonNullRawComPtr<IUnknown>>
fn query<Into>(&self) -> Into where
Into: ComInterface,
Into: ComInterface,
fn is_null(&self) -> bool
fn is_agile(&self) -> bool
unsafe fn raw_query<T>(&self, iid: &Guid, ppv: &mut T) where
T: ComInterface,
T: ComInterface,
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?
fn into_iter(self) -> Self::IntoIter[src]
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?
fn into_iter(self) -> Self::IntoIter[src]
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,
T: RefUnwindSafe,
impl<T> !Send for IVector<T>
impl<T> !Sync for IVector<T>
impl<T> Unpin for IVector<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for IVector<T> where
T: RefUnwindSafe + UnwindSafe,
T: RefUnwindSafe + UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<I> IntoIterator for I where
I: Iterator, [src]
I: Iterator,
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?
fn into_iter(self) -> I[src]
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,