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

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

Implementations

impl IPropertySet[src]

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

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

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

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

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

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

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

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

pub fn map_changed<'a, T0__: Into<Param<'a, MapChangedEventHandler<HString, Object>>>>(
    &self,
    vhnd: T0__
) -> Result<EventRegistrationToken>
[src]

pub fn remove_map_changed<'a, T0__: Into<Param<'a, EventRegistrationToken>>>(
    &self,
    token: T0__
) -> Result<()>
[src]

Trait Implementations

impl AbiTransferable for IPropertySet[src]

type Abi = RawComPtr<Self>

impl Clone for IPropertySet[src]

impl ComInterface for IPropertySet[src]

type VTable = abi_IPropertySet

impl Debug for IPropertySet[src]

impl Default for IPropertySet[src]

impl<'_> From<&'_ IPropertySet> for IIterable<IKeyValuePair<HString, Object>>[src]

impl<'_> From<&'_ IPropertySet> for IMap<HString, Object>[src]

impl<'_> From<&'_ IPropertySet> for IObservableMap<HString, Object>[src]

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

impl From<IPropertySet> for IIterable<IKeyValuePair<HString, Object>>[src]

impl From<IPropertySet> for IMap<HString, Object>[src]

impl From<IPropertySet> for IObservableMap<HString, Object>[src]

impl From<IPropertySet> for Object[src]

impl<'a> Into<Param<'a, IIterable<IKeyValuePair<HString, Object>>>> for IPropertySet[src]

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

impl<'a> Into<Param<'a, IMap<HString, Object>>> for IPropertySet[src]

impl<'a> Into<Param<'a, IMap<HString, Object>>> for &'a IPropertySet[src]

impl<'a> Into<Param<'a, IObservableMap<HString, Object>>> for IPropertySet[src]

impl<'a> Into<Param<'a, IObservableMap<HString, Object>>> for &'a IPropertySet[src]

impl IntoIterator for IPropertySet[src]

type Item = IKeyValuePair<HString, 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 IPropertySet[src]

type Item = IKeyValuePair<HString, 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<IPropertySet> for IPropertySet[src]

impl RuntimeType for IPropertySet[src]

Auto Trait Implementations

impl RefUnwindSafe for IPropertySet

impl !Send for IPropertySet

impl !Sync for IPropertySet

impl Unpin for IPropertySet

impl UnwindSafe for IPropertySet

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.