CFBinaryHeap

Struct CFBinaryHeap 

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

This is the type of a reference to CFBinaryHeaps.

See also Apple’s documentation

Implementations§

Source§

impl CFBinaryHeap

Source

pub unsafe fn new( allocator: Option<&CFAllocator>, capacity: CFIndex, call_backs: *const CFBinaryHeapCallBacks, compare_context: *const CFBinaryHeapCompareContext, ) -> Option<CFRetained<CFBinaryHeap>>

Creates a new mutable binary heap with the given values.

Parameter allocator: The CFAllocator which should be used to allocate memory for the binary heap 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 CFBinaryHeap. Pass 0 for no hint. The implementation may ignore this hint, or may use it to optimize various operations. A heap’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 pointer to a CFBinaryHeapCallBacks structure initialized with the callbacks for the binary heap to use on each value in the binary heap. 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 binary heap creations. If the version field of this callbacks structure is not one of the defined ones for CFBinaryHeap, the behavior is undefined. The retain field may be NULL, in which case the CFBinaryHeap will do nothing to add a retain to values as they are put into the binary heap. The release field may be NULL, in which case the CFBinaryHeap will do nothing to remove the binary heap’s retain (if any) on the values when the heap is destroyed or a key-value pair is removed. If the copyDescription field is NULL, the binary heap will create a simple description for a value. If the equal field is NULL, the binary heap will use pointer equality to test for equality of values. 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 CFBinaryHeapCallBacks callbacks structure, the behavior is undefined. If any of the values put into the binary heap is not one understood by one of the callback functions the behavior when that callback function is used is undefined.

Parameter compareContext: A pointer to a CFBinaryHeapCompareContext structure.

Returns: A reference to the new CFBinaryHeap.

Source

pub unsafe fn new_copy( allocator: Option<&CFAllocator>, capacity: CFIndex, heap: Option<&CFBinaryHeap>, ) -> Option<CFRetained<CFBinaryHeap>>

Creates a new mutable binary heap with the values from the given binary heap.

Parameter allocator: The CFAllocator which should be used to allocate memory for the binary heap 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 CFBinaryHeap. Pass 0 for no hint. The implementation may ignore this hint, or may use it to optimize various operations. A heap’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 heap which is to be copied, or the behavior is undefined. If this parameter is negative, the behavior is undefined.

Parameter heap: The binary heap which is to be copied. The values from the binary heap are copied as pointers into the new binary heap (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 binary heap. The count of the new binary will be the same as the given binary heap. The new binary heap uses the same callbacks as the binary heap to be copied. If this parameter is not a valid CFBinaryHeap, the behavior is undefined.

Returns: A reference to the new mutable binary heap.

Source

pub unsafe fn count(self: &CFBinaryHeap) -> CFIndex

Returns the number of values currently in the binary heap.

Parameter heap: The binary heap to be queried. If this parameter is not a valid CFBinaryHeap, the behavior is undefined.

Returns: The number of values in the binary heap.

Source

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

Counts the number of times the given value occurs in the binary heap.

Parameter heap: The binary heap to be searched. If this parameter is not a valid CFBinaryHeap, the behavior is undefined.

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

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

Source

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

Reports whether or not the value is in the binary heap.

Parameter heap: The binary heap to be searched. If this parameter is not a valid CFBinaryHeap, the behavior is undefined.

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

Returns: true, if the value is in the specified binary heap, otherwise false.

Source

pub unsafe fn minimum(self: &CFBinaryHeap) -> *const c_void

Returns the minimum value is in the binary heap. If the heap contains several equal minimum values, any one may be returned.

Parameter heap: The binary heap to be searched. If this parameter is not a valid CFBinaryHeap, the behavior is undefined.

Returns: A reference to the minimum value in the binary heap, or NULL if the binary heap contains no values.

Source

pub unsafe fn minimum_if_present( self: &CFBinaryHeap, value: *mut *const c_void, ) -> bool

Returns the minimum value is in the binary heap, if present. If the heap contains several equal minimum values, any one may be returned.

Parameter heap: The binary heap to be searched. If this parameter is not a valid CFBinaryHeap, the behavior is undefined.

Parameter value: A C pointer to pointer-sized storage to be filled with the minimum value in the binary heap. If this value is not a valid C pointer to a pointer-sized block of storage, the result is undefined. If the result of the function is false, the value stored at this address is undefined.

Returns: true, if a minimum value was found in the specified binary heap, otherwise false.

Source

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

Fills the buffer with values from the binary heap.

Parameter heap: The binary heap to be queried. If this parameter is not a valid CFBinaryHeap, the behavior is undefined.

Parameter values: A C array of pointer-sized values to be filled with values from the binary heap. The values in the C array are ordered from least to greatest. If this parameter is not a valid pointer to a C array of at least CFBinaryHeapGetCount() pointers, the behavior is undefined.

Source

pub unsafe fn apply_function( self: &CFBinaryHeap, applier: CFBinaryHeapApplierFunction, context: *mut c_void, )

Calls a function once for each value in the binary heap.

Parameter heap: The binary heap to be operated upon. If this parameter is not a valid CFBinaryHeap, the behavior is undefined.

Parameter applier: The callback function to call once for each value in the given binary heap. If this parameter is not a pointer to a function of the correct prototype, the behavior is undefined. If there are values in the binary heap 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.

Source

pub unsafe fn add_value(self: &CFBinaryHeap, value: *const c_void)

Adds the value to the binary heap.

Parameter heap: The binary heap to which the value is to be added. If this parameter is not a valid mutable CFBinaryHeap, the behavior is undefined.

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

Source

pub unsafe fn remove_minimum_value(self: &CFBinaryHeap)

Removes the minimum value from the binary heap.

Parameter heap: The binary heap from which the minimum value is to be removed. If this parameter is not a valid mutable CFBinaryHeap, the behavior is undefined.

Source

pub unsafe fn remove_all_values(self: &CFBinaryHeap)

Removes all the values from the binary heap, making it empty.

Parameter heap: The binary heap from which all of the values are to be removed. If this parameter is not a valid mutable CFBinaryHeap, 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 CFBinaryHeap<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<CFBinaryHeap<T>> for CFBinaryHeap<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<CFType> for CFBinaryHeap<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 CFBinaryHeap<T>

Source§

fn borrow(&self) -> &AnyObject

Immutably borrows from an owned value. Read more
Source§

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

Source§

fn borrow(&self) -> &CFType

Immutably borrows from an owned value. Read more
Source§

impl ConcreteType for CFBinaryHeap

Source§

fn type_id() -> CFTypeID

Returns the type identifier of all CFBinaryHeap instances.

Source§

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

Source§

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

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

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

Source§

type Target = CFType

The resulting type after dereferencing.
Source§

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

Dereferences the value.
Source§

impl<T: ?Sized> Hash for CFBinaryHeap<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 CFBinaryHeap<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 CFBinaryHeap<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 CFBinaryHeap<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 CFBinaryHeap<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 CFBinaryHeap<T>

Auto Trait Implementations§

§

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

§

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

§

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

§

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

§

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

§

impl<T = Opaque> !UnwindSafe for CFBinaryHeap<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,