[][src]Struct windows_media_transcoding_bindings::windows::media::media_properties::MediaPropertySet

#[repr(transparent)]pub struct MediaPropertySet { /* fields omitted */ }

Implementations

impl MediaPropertySet[src]

pub fn new() -> Result<Self>[src]

pub fn first(&self) -> Result<IIterator<IKeyValuePair<Guid, Object>>>[src]

pub fn lookup<'a, T0__: Into<Param<'a, Guid>>>(
    &self,
    key: T0__
) -> Result<Object>
[src]

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

pub fn has_key<'a, T0__: Into<Param<'a, Guid>>>(
    &self,
    key: T0__
) -> Result<bool>
[src]

pub fn get_view(&self) -> Result<IMapView<Guid, Object>>[src]

pub fn insert<'a, T0__: Into<Param<'a, Guid>>, T1__: Into<Param<'a, Object>>>(
    &self,
    key: T0__,
    value: T1__
) -> Result<bool>
[src]

pub fn remove<'a, T0__: Into<Param<'a, Guid>>>(&self, key: T0__) -> Result<()>[src]

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

Trait Implementations

impl AbiTransferable for MediaPropertySet[src]

type Abi = RawComPtr<IMap<Guid, Object>>

impl Clone for MediaPropertySet[src]

impl ComInterface for MediaPropertySet[src]

type VTable = abi_IMap<Guid, Object>

impl Debug for MediaPropertySet[src]

impl Default for MediaPropertySet[src]

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

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

impl<'_> From<&'_ MediaPropertySet> for Object[src]

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

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

impl From<MediaPropertySet> for Object[src]

impl<'a> Into<Param<'a, IIterable<IKeyValuePair<Guid, Object>>>> for MediaPropertySet[src]

impl<'a> Into<Param<'a, IIterable<IKeyValuePair<Guid, Object>>>> for &'a MediaPropertySet[src]

impl<'a> Into<Param<'a, IMap<Guid, Object>>> for MediaPropertySet[src]

impl<'a> Into<Param<'a, IMap<Guid, Object>>> for &'a MediaPropertySet[src]

impl IntoIterator for MediaPropertySet[src]

type Item = IKeyValuePair<Guid, Object>

The type of the elements being iterated over.

type IntoIter = IIterator<Self::Item>

Which kind of iterator are we turning this into?

impl<'a> IntoIterator for &'a MediaPropertySet[src]

type Item = IKeyValuePair<Guid, Object>

The type of the elements being iterated over.

type IntoIter = IIterator<Self::Item>

Which kind of iterator are we turning this into?

impl PartialEq<MediaPropertySet> for MediaPropertySet[src]

impl RuntimeName for MediaPropertySet[src]

impl RuntimeType for MediaPropertySet[src]

impl Send for MediaPropertySet[src]

impl StructuralPartialEq for MediaPropertySet[src]

impl Sync for MediaPropertySet[src]

Auto Trait Implementations

impl RefUnwindSafe for MediaPropertySet

impl Unpin for MediaPropertySet

impl UnwindSafe for MediaPropertySet

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.