CFMutableSet

Struct CFMutableSet 

Source
#[repr(C)]
pub struct CFMutableSet<T: ?Sized = Opaque> { /* private fields */ }
Available on crate feature CFSet only.
Expand description

This is the type of a reference to mutable CFSets.

See also Apple’s documentation

Implementations§

Source§

impl CFMutableSet

Source

pub unsafe fn new( allocator: Option<&CFAllocator>, capacity: CFIndex, call_backs: *const CFSetCallBacks, ) -> Option<CFRetained<CFMutableSet>>

Creates a new empty mutable set.

Parameter allocator: The CFAllocator which should be used to allocate memory for the set and its storage for values. This parameter may be NULL in which case the current default CFAllocator is used. If this reference is not a valid CFAllocator, the behavior is undefined.

Parameter capacity: A hint about the number of values that will be held by the CFSet. Pass 0 for no hint. The implementation may ignore this hint, or may use it to optimize various operations. A set’s actual capacity is only limited by address space and available memory constraints). If this parameter is negative, the behavior is undefined.

Parameter callBacks: A C pointer to a CFSetCallBacks structure initialized with the callbacks for the set to use on each value in the set. A copy of the contents of the callbacks structure is made, so that a pointer to a structure on the stack can be passed in, or can be reused for multiple set creations. If the version field of this callbacks structure is not one of the defined ones for CFSet, the behavior is undefined. The retain field may be NULL, in which case the CFSet will do nothing to add a retain to the contained values for the set. The release field may be NULL, in which case the CFSet will do nothing to remove the set’s retain (if any) on the values when the set is destroyed. If the copyDescription field is NULL, the set will create a simple description for the value. If the equal field is NULL, the set will use pointer equality to test for equality of values. The hash field may be NULL, in which case the CFSet will determine uniqueness by pointer equality. This callbacks parameter itself may be NULL, which is treated as if a valid structure of version 0 with all fields NULL had been passed in. Otherwise, if any of the fields are not valid pointers to functions of the correct type, or this parameter is not a valid pointer to a CFSetCallBacks callbacks structure, the behavior is undefined. If any of the values put into the set is not one understood by one of the callback functions the behavior when that callback function is used is undefined.

Returns: A reference to the new mutable CFSet.

Source

pub unsafe fn new_copy( allocator: Option<&CFAllocator>, capacity: CFIndex, the_set: Option<&CFSet>, ) -> Option<CFRetained<CFMutableSet>>

Creates a new immutable set with the values from the given set.

Parameter allocator: The CFAllocator which should be used to allocate memory for the set and its storage for values. This parameter may be NULL in which case the current default CFAllocator is used. If this reference is not a valid CFAllocator, the behavior is undefined.

Parameter capacity: A hint about the number of values that will be held by the CFSet. Pass 0 for no hint. The implementation may ignore this hint, or may use it to optimize various operations. A set’s actual capacity is only limited by address space and available memory constraints). This parameter must be greater than or equal to the count of the set which is to be copied, or the behavior is undefined. If this parameter is negative, the behavior is undefined.

Parameter theSet: The set which is to be copied. The values from the set are copied as pointers into the new set (that is, the values themselves are copied, not that which the values point to, if anything). However, the values are also retained by the new set. The count of the new set will be the same as the copied set. The new set uses the same callbacks as the set to be copied. If this parameter is not a valid CFSet, the behavior is undefined.

Returns: A reference to the new mutable CFSet.

Source§

impl CFMutableSet

Source

pub unsafe fn add_value(the_set: Option<&CFMutableSet>, value: *const c_void)

Adds the value to the set if it is not already present.

Parameter theSet: The set to which the value is to be added. If this parameter is not a valid mutable CFSet, the behavior is undefined.

Parameter value: The value to add to the set. The value is retained by the set using the retain callback provided when the set was created. If the value is not of the sort expected by the retain callback, the behavior is undefined. The count of the set is increased by one.

Source

pub unsafe fn replace_value( the_set: Option<&CFMutableSet>, value: *const c_void, )

Replaces the value in the set if it is present.

Parameter theSet: The set to which the value is to be replaced. If this parameter is not a valid mutable CFSet, the behavior is undefined.

Parameter value: The value to replace in the set. The equal() callback provided when the set was created is used to compare. If the equal() callback was NULL, pointer equality (in C, ==) is used. If a value, or any of the values in the set, are not understood by the equal() callback, the behavior is undefined. The value is retained by the set using the retain callback provided when the set was created. If the value is not of the sort expected by the retain callback, the behavior is undefined. The count of the set is increased by one.

Source

pub unsafe fn set_value(the_set: Option<&CFMutableSet>, value: *const c_void)

Replaces the value in the set if it is present, or adds the value to the set if it is absent.

Parameter theSet: The set to which the value is to be replaced. If this parameter is not a valid mutable CFSet, the behavior is undefined.

Parameter value: The value to set in the CFSet. The equal() callback provided when the set was created is used to compare. If the equal() callback was NULL, pointer equality (in C, ==) is used. If a value, or any of the values in the set, are not understood by the equal() callback, the behavior is undefined. The value is retained by the set using the retain callback provided when the set was created. If the value is not of the sort expected by the retain callback, the behavior is undefined. The count of the set is increased by one.

Source

pub unsafe fn remove_value(the_set: Option<&CFMutableSet>, value: *const c_void)

Removes the specified value from the set.

Parameter theSet: The set from which the value is to be removed. If this parameter is not a valid mutable CFSet, the behavior is undefined.

Parameter value: The value to remove. The equal() callback provided when the set was created is used to compare. If the equal() callback was NULL, pointer equality (in C, ==) is used. If a value, or any of the values in the set, are not understood by the equal() callback, the behavior is undefined.

Source

pub fn remove_all_values(the_set: Option<&CFMutableSet>)

Removes all the values from the set, making it empty.

Parameter theSet: The set from which all of the values are to be removed. If this parameter is not a valid mutable CFSet, the behavior is undefined.

Methods from Deref<Target = CFSet<T>>§

Source

pub fn count(self: &CFSet) -> CFIndex

Returns the number of values currently in the set.

Parameter theSet: The set to be queried. If this parameter is not a valid CFSet, the behavior is undefined.

Returns: The number of values in the set.

Source

pub unsafe fn count_of_value(self: &CFSet, value: *const c_void) -> CFIndex

Counts the number of times the given value occurs in the set. Since sets by definition contain only one instance of a value, this function is synonymous to CFSetContainsValue.

Parameter theSet: The set to be searched. If this parameter is not a valid CFSet, the behavior is undefined.

Parameter value: The value for which to find matches in the set. The equal() callback provided when the set was created is used to compare. If the equal() callback was NULL, pointer equality (in C, ==) is used. If value, or any of the values in the set, are not understood by the equal() callback, the behavior is undefined.

Returns: The number of times the given value occurs in the set.

Source

pub unsafe fn contains_value(self: &CFSet, value: *const c_void) -> bool

Reports whether or not the value is in the set.

Parameter theSet: The set to be searched. If this parameter is not a valid CFSet, the behavior is undefined.

Parameter value: The value for which to find matches in the set. The equal() callback provided when the set was created is used to compare. If the equal() callback was NULL, pointer equality (in C, ==) is used. If value, or any of the values in the set, are not understood by the equal() callback, the behavior is undefined.

Returns: true, if the value is in the set, otherwise false.

Source

pub unsafe fn value(self: &CFSet, value: *const c_void) -> *const c_void

Retrieves a value in the set which hashes the same as the specified value.

Parameter theSet: The set to be queried. If this parameter is not a valid CFSet, the behavior is undefined.

Parameter value: The value to retrieve. The equal() callback provided when the set was created is used to compare. If the equal() callback was NULL, pointer equality (in C, ==) is used. If a value, or any of the values in the set, are not understood by the equal() callback, the behavior is undefined.

Returns: The value in the set with the given hash.

Source

pub unsafe fn value_if_present( self: &CFSet, candidate: *const c_void, value: *mut *const c_void, ) -> bool

Retrieves a value in the set which hashes the same as the specified value, if present.

Parameter theSet: The set to be queried. If this parameter is not a valid CFSet, the behavior is undefined.

Parameter candidate: This value is hashed and compared with values in the set to determine which value to retrieve. The equal() callback provided when the set was created is used to compare. If the equal() callback was NULL, pointer equality (in C, ==) is used. If a value, or any of the values in the set, are not understood by the equal() callback, the behavior is undefined.

Parameter value: A pointer to memory which should be filled with the pointer-sized value if a matching value is found. If no match is found, the contents of the storage pointed to by this parameter are undefined. This parameter may be NULL, in which case the value from the dictionary is not returned (but the return value of this function still indicates whether or not the value was present).

Returns: True if the value was present in the set, otherwise false.

Source

pub unsafe fn values(self: &CFSet, values: *mut *const c_void)

Fills the buffer with values from the set.

Parameter theSet: The set to be queried. If this parameter is not a valid CFSet, the behavior is undefined.

Parameter values: A C array of pointer-sized values to be filled with values from the set. The values in the C array are ordered in the same order in which they appear in the set. If this parameter is not a valid pointer to a C array of at least CFSetGetCount() pointers, the behavior is undefined.

Source

pub unsafe fn apply_function( self: &CFSet, applier: CFSetApplierFunction, context: *mut c_void, )

Calls a function once for each value in the set.

Parameter theSet: The set to be operated upon. If this parameter is not a valid CFSet, the behavior is undefined.

Parameter applier: The callback function to call once for each value in the given set. If this parameter is not a pointer to a function of the correct prototype, the behavior is undefined. If there are values in the set which the applier function does not expect or cannot properly apply to, the behavior is undefined.

Parameter context: A pointer-sized user-defined value, which is passed as the second parameter to the applier function, but is otherwise unused by this function. If the context is not what is expected by the applier function, the behavior is undefined.

Methods from Deref<Target = CFType>§

Source

pub fn downcast_ref<T: ConcreteType>(&self) -> Option<&T>

Attempt to downcast the type to that of type T.

This is the reference-variant. Use CFRetained::downcast if you want to convert a retained type. See also ConcreteType for more details on which types support being converted to.

Source

pub fn retain_count(&self) -> usize

Get the reference count of the object.

This function may be useful for debugging. You normally do not use this function otherwise.

Beware that some things (like CFNumbers, small CFStrings etc.) may not have a normal retain count for optimization purposes, and can return usize::MAX in that case.

Trait Implementations§

Source§

impl<T: ?Sized> AsRef<AnyObject> for CFMutableSet<T>

Source§

fn as_ref(&self) -> &AnyObject

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl<T: ?Sized> AsRef<CFMutableSet<T>> for CFMutableSet<T>

Source§

fn as_ref(&self) -> &Self

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl<T: ?Sized> AsRef<CFSet<T>> for CFMutableSet<T>

Source§

fn as_ref(&self) -> &CFSet<T>

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl<T: ?Sized> AsRef<CFType> for CFMutableSet<T>

Source§

fn as_ref(&self) -> &CFType

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl<T: ?Sized> Borrow<AnyObject> for CFMutableSet<T>

Source§

fn borrow(&self) -> &AnyObject

Immutably borrows from an owned value. Read more
Source§

impl<T: ?Sized> Borrow<CFSet<T>> for CFMutableSet<T>

Source§

fn borrow(&self) -> &CFSet<T>

Immutably borrows from an owned value. Read more
Source§

impl<T: ?Sized> Borrow<CFType> for CFMutableSet<T>

Source§

fn borrow(&self) -> &CFType

Immutably borrows from an owned value. Read more
Source§

impl<T: ?Sized> Debug for CFMutableSet<T>

Source§

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

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

impl<T: ?Sized> Deref for CFMutableSet<T>

Source§

type Target = CFSet<T>

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Self::Target

Dereferences the value.
Source§

impl<T: ?Sized> Hash for CFMutableSet<T>

Source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<T: ?Sized> Message for CFMutableSet<T>

Source§

fn retain(&self) -> Retained<Self>
where Self: Sized,

Increment the reference count of the receiver. Read more
Source§

impl<T: ?Sized> PartialEq for CFMutableSet<T>

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T: ?Sized> RefEncode for CFMutableSet<T>

Source§

const ENCODING_REF: Encoding

The Objective-C type-encoding for a reference of this type. Read more
Source§

impl<T: ?Sized> Type for CFMutableSet<T>

Source§

fn retain(&self) -> CFRetained<Self>
where Self: Sized,

Increment the reference count of the receiver. Read more
Source§

fn as_concrete_TypeRef(&self) -> &Self

👎Deprecated: this is redundant
Helper for easier transition from the core-foundation crate.
Source§

unsafe fn wrap_under_get_rule(ptr: *const Self) -> CFRetained<Self>
where Self: Sized,

👎Deprecated: use CFRetained::retain
Helper for easier transition from the core-foundation crate. Read more
Source§

fn as_CFTypeRef(&self) -> &CFType
where Self: AsRef<CFType>,

👎Deprecated: this is redundant (CF types deref to CFType)
Helper for easier transition from the core-foundation crate.
Source§

unsafe fn wrap_under_create_rule(ptr: *const Self) -> CFRetained<Self>
where Self: Sized,

👎Deprecated: use CFRetained::from_raw
Helper for easier transition from the core-foundation crate. Read more
Source§

impl<T: ?Sized> Eq for CFMutableSet<T>

Auto Trait Implementations§

§

impl<T = Opaque> !Freeze for CFMutableSet<T>

§

impl<T = Opaque> !RefUnwindSafe for CFMutableSet<T>

§

impl<T = Opaque> !Send for CFMutableSet<T>

§

impl<T = Opaque> !Sync for CFMutableSet<T>

§

impl<T = Opaque> !Unpin for CFMutableSet<T>

§

impl<T = Opaque> !UnwindSafe for CFMutableSet<T>

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where 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, U> Into<U> for T
where 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<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

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

Source§

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 T
where U: TryFrom<T>,

Source§

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.
Source§

impl<T> AutoreleaseSafe for T
where T: ?Sized,