[−][src]Struct windows_media_transcoding_bindings::windows::media::media_properties::MediaPropertySet
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]
&self,
key: T0__
) -> Result<Object>
pub fn size(&self) -> Result<u32>[src]
pub fn has_key<'a, T0__: Into<Param<'a, Guid>>>(
&self,
key: T0__
) -> Result<bool>[src]
&self,
key: T0__
) -> Result<bool>
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]
&self,
key: T0__,
value: T1__
) -> Result<bool>
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>>
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 Clone for MediaPropertySet[src]
fn clone(&self) -> MediaPropertySet[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl ComInterface for MediaPropertySet[src]
type VTable = abi_IMap<Guid, Object>
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 Debug for MediaPropertySet[src]
impl Default for MediaPropertySet[src]
fn default() -> MediaPropertySet[src]
impl<'_> From<&'_ MediaPropertySet> for IIterable<IKeyValuePair<Guid, Object>>[src]
fn from(value: &MediaPropertySet) -> Self[src]
impl<'_> From<&'_ MediaPropertySet> for IMap<Guid, Object>[src]
fn from(value: &MediaPropertySet) -> Self[src]
impl<'_> From<&'_ MediaPropertySet> for Object[src]
fn from(value: &MediaPropertySet) -> Self[src]
impl From<MediaPropertySet> for IIterable<IKeyValuePair<Guid, Object>>[src]
fn from(value: MediaPropertySet) -> Self[src]
impl From<MediaPropertySet> for IMap<Guid, Object>[src]
fn from(value: MediaPropertySet) -> Self[src]
impl From<MediaPropertySet> for Object[src]
fn from(value: MediaPropertySet) -> Self[src]
impl<'a> Into<Param<'a, IIterable<IKeyValuePair<Guid, Object>>>> for MediaPropertySet[src]
fn into(self) -> Param<'a, IIterable<IKeyValuePair<Guid, Object>>>[src]
impl<'a> Into<Param<'a, IIterable<IKeyValuePair<Guid, Object>>>> for &'a MediaPropertySet[src]
fn into(self) -> Param<'a, IIterable<IKeyValuePair<Guid, Object>>>[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?
fn into_iter(self) -> Self::IntoIter[src]
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?
fn into_iter(self) -> Self::IntoIter[src]
impl PartialEq<MediaPropertySet> for MediaPropertySet[src]
fn eq(&self, other: &MediaPropertySet) -> bool[src]
fn ne(&self, other: &MediaPropertySet) -> bool[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]
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>,