pub struct IKeyValuePair<K, V>(/* private fields */)
where
K: RuntimeType + 'static,
V: RuntimeType + 'static;
Implementations§
Source§impl<K: RuntimeType + 'static, V: RuntimeType + 'static> IKeyValuePair<K, V>
impl<K: RuntimeType + 'static, V: RuntimeType + 'static> IKeyValuePair<K, V>
Trait Implementations§
Source§impl<K, V> Clone for IKeyValuePair<K, V>
impl<K, V> Clone for IKeyValuePair<K, V>
Source§fn clone(&self) -> IKeyValuePair<K, V>
fn clone(&self) -> IKeyValuePair<K, V>
Returns a duplicate 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 moreSource§impl<K, V> Debug for IKeyValuePair<K, V>
impl<K, V> Debug for IKeyValuePair<K, V>
Source§impl<K: RuntimeType + 'static, V: RuntimeType + 'static> From<&IKeyValuePair<K, V>> for Object
impl<K: RuntimeType + 'static, V: RuntimeType + 'static> From<&IKeyValuePair<K, V>> for Object
Source§fn from(value: &IKeyValuePair<K, V>) -> Self
fn from(value: &IKeyValuePair<K, V>) -> Self
Converts to this type from the input type.
Source§impl<K: RuntimeType + 'static, V: RuntimeType + 'static> From<IKeyValuePair<K, V>> for Object
impl<K: RuntimeType + 'static, V: RuntimeType + 'static> From<IKeyValuePair<K, V>> for Object
Source§fn from(value: IKeyValuePair<K, V>) -> Self
fn from(value: IKeyValuePair<K, V>) -> Self
Converts to this type from the input type.
Source§impl<K: RuntimeType + 'static, V: RuntimeType + 'static> Interface for IKeyValuePair<K, V>
impl<K: RuntimeType + 'static, V: RuntimeType + 'static> Interface for IKeyValuePair<K, V>
const IID: Guid
type Vtable = IKeyValuePair_abi<K, V>
Source§impl<'a, K: RuntimeType + 'static, V: RuntimeType + 'static> IntoParam<'a, Object> for &'a IKeyValuePair<K, V>
impl<'a, K: RuntimeType + 'static, V: RuntimeType + 'static> IntoParam<'a, Object> for &'a IKeyValuePair<K, V>
fn into_param(self) -> Param<'a, Object>
Source§impl<'a, K: RuntimeType + 'static, V: RuntimeType + 'static> IntoParam<'a, Object> for IKeyValuePair<K, V>
impl<'a, K: RuntimeType + 'static, V: RuntimeType + 'static> IntoParam<'a, Object> for IKeyValuePair<K, V>
fn into_param(self) -> Param<'a, Object>
Source§impl<K, V> PartialEq for IKeyValuePair<K, V>
impl<K, V> PartialEq for IKeyValuePair<K, V>
Source§impl<K: RuntimeType + 'static, V: RuntimeType + 'static> RuntimeType for IKeyValuePair<K, V>
impl<K: RuntimeType + 'static, V: RuntimeType + 'static> RuntimeType for IKeyValuePair<K, V>
const SIGNATURE: ConstBuffer
type DefaultType = Option<IKeyValuePair<K, V>>
impl<K, V> Eq for IKeyValuePair<K, V>
impl<K, V> StructuralPartialEq for IKeyValuePair<K, V>where
K: RuntimeType + 'static,
V: RuntimeType + 'static,
Auto Trait Implementations§
impl<K, V> Freeze for IKeyValuePair<K, V>
impl<K, V> RefUnwindSafe for IKeyValuePair<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> !Send for IKeyValuePair<K, V>
impl<K, V> !Sync for IKeyValuePair<K, V>
impl<K, V> Unpin for IKeyValuePair<K, V>
impl<K, V> UnwindSafe for IKeyValuePair<K, V>where
K: UnwindSafe,
V: UnwindSafe,
Blanket Implementations§
Source§impl<T> Abi for Twhere
T: Interface,
impl<T> Abi for Twhere
T: Interface,
Source§fn set_abi(&mut self) -> *mut <T as Abi>::Abi
fn set_abi(&mut self) -> *mut <T as Abi>::Abi
Returns a pointer for setting the object’s value via an ABI call.
Source§unsafe fn from_abi(abi: <T as Abi>::Abi) -> Result<T, Error>
unsafe fn from_abi(abi: <T as Abi>::Abi) -> Result<T, Error>
Casts the ABI representation to a Rust object by taking ownership of the bits.
fn drop_param(_: &mut Param<'_, Self>)
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