Struct makepad_widgets::shader::std::windows::Foundation::Collections::IObservableMap
#[repr(transparent)]pub struct IObservableMap<K, V>(/* private fields */)
where
K: RuntimeType + 'static,
V: RuntimeType + 'static;Expand description
Required features: "Foundation_Collections"
Implementations§
§impl<K, V> IObservableMap<K, V>where
K: RuntimeType + 'static,
V: RuntimeType + 'static,
impl<K, V> IObservableMap<K, V>where K: RuntimeType + 'static, V: RuntimeType + 'static,
pub fn MapChanged<P0>(&self, vhnd: P0) -> Result<EventRegistrationToken, Error>where P0: IntoParam<MapChangedEventHandler<K, V>, <MapChangedEventHandler<K, V> as TypeKind>::TypeKind>,
pub fn RemoveMapChanged( &self, token: EventRegistrationToken ) -> Result<(), Error>
pub fn First(&self) -> Result<IIterator<IKeyValuePair<K, V>>, Error>
pub fn Lookup<P0>(&self, key: P0) -> Result<V, Error>where P0: IntoParam<K, <K as TypeKind>::TypeKind>,
pub fn Size(&self) -> Result<u32, Error>
pub fn HasKey<P0>(&self, key: P0) -> Result<bool, Error>where P0: IntoParam<K, <K as TypeKind>::TypeKind>,
pub fn GetView(&self) -> Result<IMapView<K, V>, Error>
pub fn Insert<P0, P1>(&self, key: P0, value: P1) -> Result<bool, Error>where P0: IntoParam<K, <K as TypeKind>::TypeKind>, P1: IntoParam<V, <V as TypeKind>::TypeKind>,
pub fn Remove<P0>(&self, key: P0) -> Result<(), Error>where P0: IntoParam<K, <K as TypeKind>::TypeKind>,
pub fn Clear(&self) -> Result<(), Error>
Trait Implementations§
§impl<K, V> Clone for IObservableMap<K, V>where
K: RuntimeType + 'static,
V: RuntimeType + 'static,
impl<K, V> Clone for IObservableMap<K, V>where K: RuntimeType + 'static, V: RuntimeType + 'static,
§fn clone(&self) -> IObservableMap<K, V>
fn clone(&self) -> IObservableMap<K, V>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl<K, V> ComInterface for IObservableMap<K, V>where
K: RuntimeType + 'static,
V: RuntimeType + 'static,
impl<K, V> ComInterface for IObservableMap<K, V>where K: RuntimeType + 'static, V: RuntimeType + 'static,
fn as_unknown(&self) -> &IUnknown
§impl<K, V> Debug for IObservableMap<K, V>where
K: RuntimeType + 'static,
V: RuntimeType + 'static,
impl<K, V> Debug for IObservableMap<K, V>where K: RuntimeType + 'static, V: RuntimeType + 'static,
§impl<K, V> Interface for IObservableMap<K, V>where
K: RuntimeType + 'static,
V: RuntimeType + 'static,
impl<K, V> Interface for IObservableMap<K, V>where K: RuntimeType + 'static, V: RuntimeType + 'static,
type Vtable = IObservableMap_Vtbl<K, V>
§fn as_raw(&self) -> *mut c_void
fn as_raw(&self) -> *mut c_void
Returns the raw COM interface pointer. The resulting pointer continues to be owned by the
Interface implementation.§fn into_raw(self) -> *mut c_void
fn into_raw(self) -> *mut c_void
Returns the raw COM interface pointer and releases ownership. It the caller’s responsibility to release the COM interface pointer.
§impl<K, V> IntoIterator for &IObservableMap<K, V>where
K: RuntimeType + 'static,
V: RuntimeType + 'static,
impl<K, V> IntoIterator for &IObservableMap<K, V>where K: RuntimeType + 'static, V: RuntimeType + 'static,
§type Item = IKeyValuePair<K, V>
type Item = IKeyValuePair<K, V>
The type of the elements being iterated over.
§type IntoIter = IIterator<<&IObservableMap<K, V> as IntoIterator>::Item>
type IntoIter = IIterator<<&IObservableMap<K, V> as IntoIterator>::Item>
Which kind of iterator are we turning this into?
§fn into_iter(self) -> <&IObservableMap<K, V> as IntoIterator>::IntoIter
fn into_iter(self) -> <&IObservableMap<K, V> as IntoIterator>::IntoIter
Creates an iterator from a value. Read more
§impl<K, V> IntoIterator for IObservableMap<K, V>where
K: RuntimeType + 'static,
V: RuntimeType + 'static,
impl<K, V> IntoIterator for IObservableMap<K, V>where K: RuntimeType + 'static, V: RuntimeType + 'static,
§type Item = IKeyValuePair<K, V>
type Item = IKeyValuePair<K, V>
The type of the elements being iterated over.
§type IntoIter = IIterator<<IObservableMap<K, V> as IntoIterator>::Item>
type IntoIter = IIterator<<IObservableMap<K, V> as IntoIterator>::Item>
Which kind of iterator are we turning this into?
§fn into_iter(self) -> <IObservableMap<K, V> as IntoIterator>::IntoIter
fn into_iter(self) -> <IObservableMap<K, V> as IntoIterator>::IntoIter
Creates an iterator from a value. Read more
§impl<K, V> PartialEq<IObservableMap<K, V>> for IObservableMap<K, V>where
K: RuntimeType + 'static,
V: RuntimeType + 'static,
impl<K, V> PartialEq<IObservableMap<K, V>> for IObservableMap<K, V>where K: RuntimeType + 'static, V: RuntimeType + 'static,
§fn eq(&self, other: &IObservableMap<K, V>) -> bool
fn eq(&self, other: &IObservableMap<K, V>) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl<K, V> Eq for IObservableMap<K, V>where K: RuntimeType + 'static, V: RuntimeType + 'static,
Auto Trait Implementations§
impl<K, V> RefUnwindSafe for IObservableMap<K, V>where K: RefUnwindSafe, V: RefUnwindSafe,
impl<K, V> !Send for IObservableMap<K, V>
impl<K, V> !Sync for IObservableMap<K, V>
impl<K, V> Unpin for IObservableMap<K, V>where K: Unpin, V: Unpin,
impl<K, V> UnwindSafe for IObservableMap<K, V>where K: UnwindSafe, V: 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