pub struct CFArray<T = *const c_void>(/* private fields */);
Expand description

A heterogeneous immutable array.

Implementations§

source§

impl<T> CFArray<T>

source

pub fn from_copyable(elems: &[T]) -> CFArray<T>
where T: Copy,

Creates a new CFArray with the given elements, which must implement Copy.

source

pub fn from_CFTypes(elems: &[T]) -> CFArray<T>
where T: TCFType,

Creates a new CFArray with the given elements, which must be CFType objects.

source

pub fn to_untyped(&self) -> CFArray

source

pub fn into_untyped(self) -> CFArray

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

source

pub fn iter(&self) -> CFArrayIterator<'_, T>

Iterates over the elements of this CFArray.

Careful; the loop body must wrap the reference properly. Generally, when array elements are Core Foundation objects (not always true), they need to be wrapped with TCFType::wrap_under_get_rule().

source

pub fn len(&self) -> isize

source

pub fn is_empty(&self) -> bool

Returns true if the array contains no elements.

source

pub unsafe fn get_unchecked(&self, index: isize) -> ItemRef<'_, T>
where T: FromVoid,

source

pub fn get(&self, index: isize) -> Option<ItemRef<'_, T>>
where T: FromVoid,

source

pub fn get_values(&self, range: CFRange) -> Vec<*const c_void>

source

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

Trait Implementations§

source§

impl CFPropertyListSubClass for CFArray

source§

fn to_CFPropertyList(&self) -> CFPropertyList

Create an instance of the superclass type CFPropertyList for this instance.
source§

fn into_CFPropertyList(self) -> CFPropertyList
where Self: Sized,

Equal to to_CFPropertyList, but consumes self and avoids changing the reference count.
source§

impl Clone for CFArray

source§

fn clone(&self) -> CFArray

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<T> Debug for CFArray<T>

source§

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

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

impl<T> Drop for CFArray<T>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl<'a, T> IntoIterator for &'a CFArray<T>
where T: FromVoid,

§

type Item = ItemRef<'a, T>

The type of the elements being iterated over.
§

type IntoIter = CFArrayIterator<'a, T>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> CFArrayIterator<'a, T>

Creates an iterator from a value. Read more
source§

impl PartialEq for CFArray

source§

fn eq(&self, other: &CFArray) -> 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<T> TCFType for CFArray<T>

§

type Ref = *const __CFArray

The reference type wrapped inside this type.
source§

fn as_concrete_TypeRef(&self) -> *const __CFArray

Returns the object as its concrete TypeRef.
source§

unsafe fn wrap_under_get_rule(reference: *const __CFArray) -> CFArray<T>

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) -> *const c_void

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

unsafe fn wrap_under_create_rule(reference: *const __CFArray) -> CFArray<T>

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() -> usize

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) -> CFType
where Self: Sized,

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

fn retain_count(&self) -> isize

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) -> usize

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>(&self) -> bool
where OtherCFType: TCFType,

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

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

source§

impl ToVoid<CFArray> for CFArray

source§

impl ConcreteCFType for CFArray

source§

impl Eq for CFArray

Auto Trait Implementations§

§

impl<T> Freeze for CFArray<T>

§

impl<T> RefUnwindSafe for CFArray<T>
where T: RefUnwindSafe,

§

impl<T = *const c_void> !Send for CFArray<T>

§

impl<T = *const c_void> !Sync for CFArray<T>

§

impl<T> Unpin for CFArray<T>
where T: Unpin,

§

impl<T> UnwindSafe for CFArray<T>
where T: UnwindSafe,

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> FromMutVoid for T
where T: TCFType,

source§

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

source§

impl<T> FromVoid for T
where T: TCFType,

source§

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

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<T> ToOwned for T
where 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 T
where 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 T
where 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.