pub struct IMapChangedEventArgs<K>(/* private fields */)
where
K: RuntimeType + 'static;Implementations§
Source§impl<K: RuntimeType + 'static> IMapChangedEventArgs<K>
impl<K: RuntimeType + 'static> IMapChangedEventArgs<K>
pub fn CollectionChange(&self) -> Result<CollectionChange>
pub fn Key(&self) -> Result<K>
Trait Implementations§
Source§impl<K: RuntimeType + 'static> CanInto<IInspectable> for IMapChangedEventArgs<K>
impl<K: RuntimeType + 'static> CanInto<IInspectable> for IMapChangedEventArgs<K>
Source§impl<K: RuntimeType + 'static> CanInto<IUnknown> for IMapChangedEventArgs<K>
impl<K: RuntimeType + 'static> CanInto<IUnknown> for IMapChangedEventArgs<K>
Source§impl<K> Clone for IMapChangedEventArgs<K>where
K: RuntimeType + 'static + Clone,
impl<K> Clone for IMapChangedEventArgs<K>where
K: RuntimeType + 'static + Clone,
Source§fn clone(&self) -> IMapChangedEventArgs<K>
fn clone(&self) -> IMapChangedEventArgs<K>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<K> Debug for IMapChangedEventArgs<K>where
K: RuntimeType + 'static + Debug,
impl<K> Debug for IMapChangedEventArgs<K>where
K: RuntimeType + 'static + Debug,
impl<K> Eq for IMapChangedEventArgs<K>where
K: RuntimeType + 'static + Eq,
Source§impl<K: RuntimeType + 'static> Interface for IMapChangedEventArgs<K>
impl<K: RuntimeType + 'static> Interface for IMapChangedEventArgs<K>
Source§fn into_raw(self) -> *mut c_void
fn into_raw(self) -> *mut c_void
Transfers ownership of the COM interface pointer to the caller.
Source§unsafe fn from_raw(raw: *mut c_void) -> Self
unsafe fn from_raw(raw: *mut c_void) -> Self
Takes ownership of a COM interface pointer. Read more
Source§unsafe fn from_raw_borrowed(raw: &*mut c_void) -> Option<&Self>
unsafe fn from_raw_borrowed(raw: &*mut c_void) -> Option<&Self>
Borrows a COM interface pointer. Read more
Source§fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
Queries the object for another interface.
Source§fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>
fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>
Returns the generated outer Rust implementation as [
&dyn Any]. Read moreSource§fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>
fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>
Returns a borrowed reference to the generated outer Rust implementation. Read more
Source§fn cast_object<T>(&self) -> Result<ComObject<T>, Error>
fn cast_object<T>(&self) -> Result<ComObject<T>, Error>
Returns an owned reference to the generated outer Rust implementation. Read more
Source§fn downgrade(&self) -> Result<Weak<Self>, Error>
fn downgrade(&self) -> Result<Weak<Self>, Error>
Attempts to create a
Weak reference to this object.Source§unsafe fn query(&self, iid: *const GUID, interface: *mut *mut c_void) -> HRESULT
unsafe fn query(&self, iid: *const GUID, interface: *mut *mut c_void) -> HRESULT
Calls
QueryInterface. Read moreSource§fn to_ref(&self) -> InterfaceRef<'_, Self>
fn to_ref(&self) -> InterfaceRef<'_, Self>
Borrows this interface without changing its reference count.
Source§impl<K> PartialEq for IMapChangedEventArgs<K>where
K: RuntimeType + 'static + PartialEq,
impl<K> PartialEq for IMapChangedEventArgs<K>where
K: RuntimeType + 'static + PartialEq,
impl<K> StructuralPartialEq for IMapChangedEventArgs<K>where
K: RuntimeType + 'static + PartialEq,
Auto Trait Implementations§
impl<K> !Send for IMapChangedEventArgs<K>
impl<K> !Sync for IMapChangedEventArgs<K>
impl<K> Freeze for IMapChangedEventArgs<K>where
PhantomData<K>: Freeze,
impl<K> RefUnwindSafe for IMapChangedEventArgs<K>where
PhantomData<K>: RefUnwindSafe,
impl<K> Unpin for IMapChangedEventArgs<K>where
PhantomData<K>: Unpin,
impl<K> UnsafeUnpin for IMapChangedEventArgs<K>where
PhantomData<K>: UnsafeUnpin,
impl<K> UnwindSafe for IMapChangedEventArgs<K>where
PhantomData<K>: UnwindSafe,
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