pub struct CFMutableDictionary<K = *const c_void, V = *const c_void>(/* private fields */);

Implementations§

source§

impl<K, V> CFMutableDictionary<K, V>

source

pub fn new() -> Self

source

pub fn with_capacity(capacity: isize) -> Self

source

pub fn copy_with_capacity(&self, capacity: isize) -> Self

source

pub fn from_CFType_pairs(pairs: &[(K, V)]) -> CFMutableDictionary<K, V>where K: ToVoid<K>, V: ToVoid<V>,

source

pub fn to_untyped(&self) -> CFMutableDictionary

source

pub fn into_untyped(self) -> CFMutableDictionary

Returns the same dictionary, but with the types reset to void pointers. Equal to to_untyped, but is faster since it does not increment the retain count.

source

pub fn to_immutable(&self) -> CFDictionary<K, V>

Returns a CFDictionary pointing to the same underlying dictionary as this mutable one.

source

pub fn len(&self) -> usize

source

pub fn is_empty(&self) -> bool

source

pub fn contains_key(&self, key: *const c_void) -> bool

source

pub fn find<'a>(&'a self, key: &K) -> Option<ItemRef<'a, V>>where V: FromVoid, K: ToVoid<K>,

source

pub fn get<'a>(&'a self, key: &K) -> ItemRef<'a, V>where V: FromVoid, K: ToVoid<K>,

Panics

Panics if the key is not present in the dictionary. Use find to get an Option instead of panicking.

source

pub fn get_keys_and_values(&self) -> (Vec<*const c_void>, Vec<*const c_void>)

source

pub fn add(&mut self, key: &K, value: &V)where K: ToVoid<K>, V: ToVoid<V>,

Adds the key-value pair to the dictionary if no such key already exist.

source

pub fn set(&mut self, key: K, value: V)where K: ToVoid<K>, V: ToVoid<V>,

Sets the value of the key in the dictionary.

source

pub fn replace(&mut self, key: K, value: V)where K: ToVoid<K>, V: ToVoid<V>,

Replaces the value of the key in the dictionary.

source

pub fn remove(&mut self, key: K)where K: ToVoid<K>,

Removes the value of the key from the dictionary.

source

pub fn remove_all(&mut self)

Trait Implementations§

source§

impl Clone for CFMutableDictionary

source§

fn clone(&self) -> CFMutableDictionary

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for CFMutableDictionary

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<K, V> Default for CFMutableDictionary<K, V>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<K, V> Drop for CFMutableDictionary<K, V>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl<'a, K, V> From<&'a CFDictionary<K, V>> for CFMutableDictionary<K, V>

source§

fn from(dict: &'a CFDictionary<K, V>) -> Self

Creates a new mutable dictionary with the key-value pairs from another dictionary. The capacity of the new mutable dictionary is not limited.

source§

impl PartialEq for CFMutableDictionary

source§

fn eq(&self, other: &CFMutableDictionary) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<K, V> TCFType for CFMutableDictionary<K, V>

§

type Ref = *mut __CFDictionary

The reference type wrapped inside this type.
source§

fn as_concrete_TypeRef(&self) -> CFMutableDictionaryRef

Returns the object as its concrete TypeRef.
source§

unsafe fn wrap_under_get_rule(reference: CFMutableDictionaryRef) -> Self

Returns an instance of the object, wrapping the underlying CFTypeRef subclass. Use this when following Core Foundation’s “Get Rule”. The reference count is bumped.
source§

fn as_CFTypeRef(&self) -> CFTypeRef

Returns the object as a raw CFTypeRef. The reference count is not adjusted.
source§

unsafe fn wrap_under_create_rule(reference: CFMutableDictionaryRef) -> Self

Returns an instance of the object, wrapping the underlying CFTypeRef subclass. Use this when following Core Foundation’s “Create Rule”. The reference count is not bumped.
source§

fn type_id() -> CFTypeID

Returns the type ID for this class.
source§

fn as_CFType(&self) -> CFType

Returns the object as a wrapped CFType. The reference count is incremented by one.
source§

fn into_CFType(self) -> CFTypewhere Self: Sized,

Returns the object as a wrapped CFType. Consumes self and avoids changing the reference count.
source§

fn retain_count(&self) -> CFIndex

Returns the reference count of the object. It is unwise to do anything other than test whether the return value of this method is greater than zero.
source§

fn type_of(&self) -> CFTypeID

Returns the type ID of this object.
source§

fn show(&self)

Writes a debugging version of this object on standard error.
source§

fn instance_of<OtherCFType: TCFType>(&self) -> bool

Returns true if this value is an instance of another type.
source§

impl<'a> ToVoid<CFMutableDictionary> for &'a CFMutableDictionary

source§

impl ToVoid<CFMutableDictionary> for CFMutableDictionaryRef

source§

impl ToVoid<CFMutableDictionary> for CFMutableDictionary

source§

impl Eq for CFMutableDictionary

Auto Trait Implementations§

§

impl<K, V> RefUnwindSafe for CFMutableDictionary<K, V>where K: RefUnwindSafe, V: RefUnwindSafe,

§

impl<K = *const c_void, V = *const c_void> !Send for CFMutableDictionary<K, V>

§

impl<K = *const c_void, V = *const c_void> !Sync for CFMutableDictionary<K, V>

§

impl<K, V> Unpin for CFMutableDictionary<K, V>where K: Unpin, V: Unpin,

§

impl<K, V> UnwindSafe for CFMutableDictionary<K, V>where K: UnwindSafe, V: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> FromMutVoid for Twhere T: TCFType,

source§

unsafe fn from_mut_void<'a>(x: *mut c_void) -> ItemMutRef<'a, T>

source§

impl<T> FromVoid for Twhere T: TCFType,

source§

unsafe fn from_void<'a>(x: *const c_void) -> ItemRef<'a, T>

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.