#[repr(C)]pub struct CFMutableSet<T: ?Sized = Opaque> { /* private fields */ }
CFSet
only.Expand description
This is the type of a reference to mutable CFSets.
See also Apple’s documentation
Implementations§
Source§impl CFMutableSet
impl CFMutableSet
Sourcepub unsafe fn new(
allocator: Option<&CFAllocator>,
capacity: CFIndex,
call_backs: *const CFSetCallBacks,
) -> Option<CFRetained<CFMutableSet>>
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.
Sourcepub unsafe fn new_copy(
allocator: Option<&CFAllocator>,
capacity: CFIndex,
the_set: Option<&CFSet>,
) -> Option<CFRetained<CFMutableSet>>
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
impl CFMutableSet
Sourcepub unsafe fn add_value(the_set: Option<&CFMutableSet>, value: *const c_void)
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.
Sourcepub unsafe fn replace_value(
the_set: Option<&CFMutableSet>,
value: *const c_void,
)
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.
Sourcepub unsafe fn set_value(the_set: Option<&CFMutableSet>, value: *const c_void)
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.
Sourcepub unsafe fn remove_value(the_set: Option<&CFMutableSet>, value: *const c_void)
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.
Sourcepub fn remove_all_values(the_set: Option<&CFMutableSet>)
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>>§
Sourcepub fn count(self: &CFSet) -> CFIndex
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.
Sourcepub unsafe fn count_of_value(self: &CFSet, value: *const c_void) -> CFIndex
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.
Sourcepub unsafe fn contains_value(self: &CFSet, value: *const c_void) -> bool
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.
Sourcepub unsafe fn value(self: &CFSet, value: *const c_void) -> *const c_void
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.
Sourcepub unsafe fn value_if_present(
self: &CFSet,
candidate: *const c_void,
value: *mut *const c_void,
) -> bool
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.
Sourcepub unsafe fn values(self: &CFSet, values: *mut *const c_void)
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.
Sourcepub unsafe fn apply_function(
self: &CFSet,
applier: CFSetApplierFunction,
context: *mut c_void,
)
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>§
Sourcepub fn downcast_ref<T: ConcreteType>(&self) -> Option<&T>
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.
Sourcepub fn retain_count(&self) -> usize
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 CFNumber
s, small CFString
s 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<CFMutableSet<T>> for CFMutableSet<T>
impl<T: ?Sized> AsRef<CFMutableSet<T>> for CFMutableSet<T>
Source§impl<T: ?Sized> Debug for CFMutableSet<T>
impl<T: ?Sized> Debug for CFMutableSet<T>
Source§impl<T: ?Sized> Deref for CFMutableSet<T>
impl<T: ?Sized> Deref for CFMutableSet<T>
Source§impl<T: ?Sized> Hash for CFMutableSet<T>
impl<T: ?Sized> Hash for CFMutableSet<T>
Source§impl<T: ?Sized> Message for CFMutableSet<T>
impl<T: ?Sized> Message for CFMutableSet<T>
Source§impl<T: ?Sized> PartialEq for CFMutableSet<T>
impl<T: ?Sized> PartialEq for CFMutableSet<T>
Source§impl<T: ?Sized> RefEncode for CFMutableSet<T>
impl<T: ?Sized> RefEncode for CFMutableSet<T>
Source§const ENCODING_REF: Encoding
const ENCODING_REF: Encoding
Source§impl<T: ?Sized> Type for CFMutableSet<T>
impl<T: ?Sized> Type for CFMutableSet<T>
Source§fn retain(&self) -> CFRetained<Self> ⓘwhere
Self: Sized,
fn retain(&self) -> CFRetained<Self> ⓘwhere
Self: Sized,
Source§fn as_concrete_TypeRef(&self) -> &Self
fn as_concrete_TypeRef(&self) -> &Self
core-foundation
crate.Source§unsafe fn wrap_under_get_rule(ptr: *const Self) -> CFRetained<Self> ⓘwhere
Self: Sized,
unsafe fn wrap_under_get_rule(ptr: *const Self) -> CFRetained<Self> ⓘwhere
Self: Sized,
core-foundation
crate. Read moreSource§fn as_CFTypeRef(&self) -> &CFType
fn as_CFTypeRef(&self) -> &CFType
core-foundation
crate.Source§unsafe fn wrap_under_create_rule(ptr: *const Self) -> CFRetained<Self> ⓘwhere
Self: Sized,
unsafe fn wrap_under_create_rule(ptr: *const Self) -> CFRetained<Self> ⓘwhere
Self: Sized,
core-foundation
crate. Read more