Struct core_foundation::propertylist::CFPropertyList

source ·
pub struct CFPropertyList(/* private fields */);
Expand description

A CFPropertyList struct. This is superclass to CFData, CFString, CFArray, CFDictionary, CFDate, CFBoolean, and CFNumber.

This superclass type does not have its own CFTypeID, instead each instance has the CFTypeID of the subclass it is an instance of. Thus, this type cannot implement the TCFType trait, since it cannot implement the static TCFType::type_id() method.

Implementations§

source§

impl CFPropertyList

source

pub fn as_concrete_TypeRef(&self) -> CFPropertyListRef

source

pub unsafe fn wrap_under_get_rule( reference: CFPropertyListRef, ) -> CFPropertyList

source

pub fn as_CFType(&self) -> CFType

source

pub fn into_CFType(self) -> CFType
where Self: Sized,

source

pub fn as_CFTypeRef(&self) -> CFTypeRef

source

pub unsafe fn wrap_under_create_rule(obj: CFPropertyListRef) -> CFPropertyList

source

pub 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

pub fn type_of(&self) -> CFTypeID

Returns the type ID of this object. Will be one of CFData, CFString, CFArray, CFDictionary, CFDate, CFBoolean, or CFNumber.

source

pub fn show(&self)

Writes a debugging version of this object on standard error.

source

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

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

source§

impl CFPropertyList

source

pub fn downcast<T: CFPropertyListSubClass>(&self) -> Option<T>

Try to downcast the CFPropertyList to a subclass. Checking if the instance is the correct subclass happens at runtime and None is returned if it is not the correct type. Works similar to Box::downcast and CFType::downcast.

§Examples
// Create a string.
let string: CFString = CFString::from_static_string("FooBar");
// Cast it up to a property list.
let propertylist: CFPropertyList = string.to_CFPropertyList();
// Cast it down again.
assert_eq!(propertylist.downcast::<CFString>().unwrap().to_string(), "FooBar");
source

pub fn downcast_into<T: CFPropertyListSubClass>(self) -> Option<T>

Similar to downcast, but consumes self and can thus avoid touching the retain count.

Trait Implementations§

source§

impl Clone for CFPropertyList

source§

fn clone(&self) -> CFPropertyList

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 CFPropertyList

source§

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

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

impl Drop for CFPropertyList

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl PartialEq for CFPropertyList

source§

fn eq(&self, other: &CFPropertyList) -> 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 Eq for CFPropertyList

Auto Trait Implementations§

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> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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<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.