[][src]Struct winrt::ComArray

pub struct ComArray<T> where
    T: RtType
{ /* fields omitted */ }

Owned array type that is used as return type when WinRT methods return arrays. It wraps a block of memory that has been allocated by WinRT and will be deallocated using CoTaskMemFree on drop.

Methods

impl<T> ComArray<T> where
    T: RtType
[src]

pub unsafe fn from_raw(size: u32, first: *mut T::Abi) -> ComArray<T>[src]

pub fn len(&self) -> usize[src]

Returns the length of the array.

Trait Implementations

impl<T> Drop for ComArray<T> where
    T: RtType
[src]

impl<T> Deref for ComArray<T> where
    T: RtType
[src]

type Target = [T::OutNonNull]

The resulting type after dereferencing.

impl<T> DerefMut for ComArray<T> where
    T: RtType
[src]

Auto Trait Implementations

impl<T> !Send for ComArray<T>

impl<T> !Sync for ComArray<T>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]