ICNContactProperty

Trait ICNContactProperty 

Source
pub trait ICNContactProperty: PNSObject {
    // Provided methods
    fn p_contact(&self) -> CNContact { ... }
    fn p_key(&self) -> NSString { ... }
    fn p_value(&self) -> NSString { ... }
    fn p_label(&self) -> NSString { ... }
    fn p_identifier(&self) -> NSString { ... }
}
Expand description

A trait containing all the methods for CNContactProperty

Provided Methods§

Source

fn p_contact(&self) -> CNContact

The associated contact.

Source

fn p_key(&self) -> NSString

The key of the contact property.

Source

fn p_value(&self) -> NSString

The value of the property.

Source

fn p_label(&self) -> NSString

The label of the labeled value of the property array.

Source

fn p_identifier(&self) -> NSString

The label of the labeled value of the property array.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§