pub struct IMFAttributes(/* private fields */);Expand description
IMFAttributes
COM interface.
Automatically calls
Release
when the object goes out of scope.
Trait Implementations§
Source§impl Clone for IMFAttributes
impl Clone for IMFAttributes
Source§impl Drop for IMFAttributes
impl Drop for IMFAttributes
Source§impl mf_IMFAttributes for IMFAttributes
impl mf_IMFAttributes for IMFAttributes
Source§fn Compare(
&self,
theirs: &impl mf_IMFAttributes,
match_type: MF_ATTRIBUTES_MATCH,
) -> HrResult<bool>
fn Compare( &self, theirs: &impl mf_IMFAttributes, match_type: MF_ATTRIBUTES_MATCH, ) -> HrResult<bool>
IMFAttributes::Compare
method.Source§fn CompareItem(&self, guid_key: &GUID, value: &PropVariant) -> HrResult<bool>
fn CompareItem(&self, guid_key: &GUID, value: &PropVariant) -> HrResult<bool>
IMFAttributes::CompareItem
method.Source§fn CopyAllItems(&self, dest: &impl mf_IMFAttributes) -> HrResult<()>
fn CopyAllItems(&self, dest: &impl mf_IMFAttributes) -> HrResult<()>
IMFAttributes::CopyAllItems
method.Source§fn DeleteAllItems(&self) -> HrResult<()>
fn DeleteAllItems(&self) -> HrResult<()>
IMFAttributes::DeleteAllItems
method.Source§fn DeleteItem(&self, guid_key: &GUID) -> HrResult<()>
fn DeleteItem(&self, guid_key: &GUID) -> HrResult<()>
IMFAttributes::DeleteItem
method.Source§fn GetBlob(&self, guid_key: &GUID) -> HrResult<Vec<u8>>
fn GetBlob(&self, guid_key: &GUID) -> HrResult<Vec<u8>>
IMFAttributes::GetBlob
method. Read moreSource§fn GetBlobSize(&self, guid_key: &GUID) -> HrResult<u32>
fn GetBlobSize(&self, guid_key: &GUID) -> HrResult<u32>
IMFAttributes::GetBlobSize
method.Source§fn GetItem(&self, guid_key: &GUID) -> HrResult<PropVariant>
fn GetItem(&self, guid_key: &GUID) -> HrResult<PropVariant>
IMFAttributes::GetItem
method.Source§fn GetItemByIndex(&self, index: u32) -> HrResult<(GUID, PropVariant)>
fn GetItemByIndex(&self, index: u32) -> HrResult<(GUID, PropVariant)>
IMFAttributes::GetItemByIndex
method.Source§fn GetItemType(&self, guid_key: &GUID) -> HrResult<MF_ATTRIBUTE>
fn GetItemType(&self, guid_key: &GUID) -> HrResult<MF_ATTRIBUTE>
IMFAttributes::GetItemType
method.Source§fn GetString(&self, guid_key: &GUID) -> HrResult<String>
fn GetString(&self, guid_key: &GUID) -> HrResult<String>
IMFAttributes::GetString
method. Read moreSource§fn GetStringLength(&self, guid_key: &GUID) -> HrResult<u32>
fn GetStringLength(&self, guid_key: &GUID) -> HrResult<u32>
IMFAttributes::GetStringLength
method.Source§fn GetUnknown<T>(&self, guid_key: &GUID) -> HrResult<T>where
T: ole_IUnknown,
fn GetUnknown<T>(&self, guid_key: &GUID) -> HrResult<T>where
T: ole_IUnknown,
IMFAttributes::GetUnknown
method.Source§fn SetDouble(&self, guid_key: &GUID, value: f64) -> HrResult<()>
fn SetDouble(&self, guid_key: &GUID, value: f64) -> HrResult<()>
IMFAttributes::SetDouble
method.Source§fn SetGUID(&self, guid_key: &GUID, value: &GUID) -> HrResult<()>
fn SetGUID(&self, guid_key: &GUID, value: &GUID) -> HrResult<()>
IMFAttributes::SetGUID
method.Source§fn SetItem(&self, guid_key: &GUID, value: &PropVariant) -> HrResult<()>
fn SetItem(&self, guid_key: &GUID, value: &PropVariant) -> HrResult<()>
IMFAttributes::SetItem
method.Source§fn SetString(&self, guid_key: &GUID, value: &str) -> HrResult<()>
fn SetString(&self, guid_key: &GUID, value: &str) -> HrResult<()>
IMFAttributes::SetString
method.Source§fn SetUINT32(&self, guid_key: &GUID, value: u32) -> HrResult<()>
fn SetUINT32(&self, guid_key: &GUID, value: u32) -> HrResult<()>
IMFAttributes::SetUINT32
method.Source§fn SetUINT64(&self, guid_key: &GUID, value: u64) -> HrResult<()>
fn SetUINT64(&self, guid_key: &GUID, value: u64) -> HrResult<()>
IMFAttributes::SetUINT64
method.Source§fn SetUnknown(&self, guid_key: &GUID, value: &impl ole_IUnknown) -> HrResult<()>
fn SetUnknown(&self, guid_key: &GUID, value: &impl ole_IUnknown) -> HrResult<()>
IMFAttributes::SetUnknown
method.Source§fn UnlockStore(&self) -> HrResult<()>
fn UnlockStore(&self) -> HrResult<()>
IMFAttributes::UnlockStore
method.Source§impl ole_IUnknown for IMFAttributes
impl ole_IUnknown for IMFAttributes
Source§unsafe fn from_ptr(p: *mut c_void) -> Self
unsafe fn from_ptr(p: *mut c_void) -> Self
Creates an object from a COM virtual table pointer. Read more
Source§unsafe fn as_mut(&mut self) -> &mut *mut c_void
unsafe fn as_mut(&mut self) -> &mut *mut c_void
Returns a mutable reference do the underlying COM virtual table pointer. Read more
Source§fn ptr(&self) -> *mut c_void
fn ptr(&self) -> *mut c_void
Returns the pointer to the underlying COM virtual table. Read more
Source§fn QueryInterface<T>(&self) -> HrResult<T>where
T: ole_IUnknown,
fn QueryInterface<T>(&self) -> HrResult<T>where
T: ole_IUnknown,
IUnknown::QueryInterface
method.impl Send for IMFAttributes
Auto Trait Implementations§
impl Freeze for IMFAttributes
impl RefUnwindSafe for IMFAttributes
impl !Sync for IMFAttributes
impl Unpin for IMFAttributes
impl UnwindSafe for IMFAttributes
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more