pub struct CFString(/* private fields */);
Expand description

An immutable string in one of a variety of encodings.

Implementations§

source§

impl CFString

source

pub fn new(string: &str) -> CFString

Creates a new CFString instance from a Rust string.

source

pub fn from_static_string(string: &'static str) -> CFString

Like CFString::new, but references a string that can be used as a backing store by virtue of being statically allocated.

source

pub fn char_len(&self) -> CFIndex

Returns the number of characters in the string.

Trait Implementations§

source§

impl CFPropertyListSubClass for CFString

source§

fn to_CFPropertyList(&self) -> CFPropertyList

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

fn into_CFPropertyList(self) -> CFPropertyListwhere Self: Sized,

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

impl Clone for CFString

source§

fn clone(&self) -> CFString

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 CFString

source§

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

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

impl Display for CFString

source§

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

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

impl Drop for CFString

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl<'a> From<&'a CFString> for Cow<'a, str>

source§

fn from(cf_str: &'a CFString) -> Cow<'a, str>

Converts to this type from the input type.
source§

impl<'a> From<&'a str> for CFString

source§

fn from(string: &'a str) -> CFString

Converts to this type from the input type.
source§

impl FromStr for CFString

source§

fn from_str(string: &str) -> Result<CFString, ()>

See also CFString::new() for a variant of this which does not return a Result.

§

type Err = ()

The associated error which can be returned from parsing.
source§

impl<'a> PartialEq<&'a str> for CFString

source§

fn eq(&self, other: &&str) -> 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<'a> PartialEq<CFString> for &'a str

source§

fn eq(&self, other: &CFString) -> 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 PartialEq<CFString> for String

source§

fn eq(&self, other: &CFString) -> 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 PartialEq<String> for CFString

source§

fn eq(&self, other: &String) -> 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 PartialEq for CFString

source§

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

§

type Ref = *const __CFString

The reference type wrapped inside this type.
source§

fn as_concrete_TypeRef(&self) -> CFStringRef

Returns the object as its concrete TypeRef.
source§

unsafe fn wrap_under_get_rule(reference: CFStringRef) -> Self

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

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

unsafe fn wrap_under_create_rule(reference: CFStringRef) -> Self

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

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

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

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§

fn type_of(&self) -> CFTypeID

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

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

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

source§

impl ToVoid<CFString> for CFStringRef

source§

impl ToVoid<CFString> for CFString

source§

impl ConcreteCFType for CFString

source§

impl Eq for CFString

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere T: TCFType,

source§

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

source§

impl<T> FromVoid for Twhere T: TCFType,

source§

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

source§

impl<T, U> Into<U> for Twhere 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 Twhere 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> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere 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 Twhere 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.