#[repr(i64)]pub enum CNContainerType {
Unassigned = 0,
Local = 1,
Exchange = 2,
CardDav = 3,
}Expand description
The container may be local on the device or associated with a server account that has contacts.
Variants§
Unassigned = 0
Local = 1
A container for contacts only stored locally on the device. There is only one local container for a device.
Exchange = 2
A container for contacts stored in an Exchange folder from an Exchange server.
CardDav = 3
A container for contacts stored in an CardDAV server, such as iCloud.
Trait Implementations§
Source§impl Clone for CNContainerType
impl Clone for CNContainerType
Source§fn clone(&self) -> CNContainerType
fn clone(&self) -> CNContainerType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CNContainerType
Source§impl Debug for CNContainerType
impl Debug for CNContainerType
impl Eq for CNContainerType
Source§impl PartialEq for CNContainerType
impl PartialEq for CNContainerType
impl StructuralPartialEq for CNContainerType
Auto Trait Implementations§
impl Freeze for CNContainerType
impl RefUnwindSafe for CNContainerType
impl Send for CNContainerType
impl Sync for CNContainerType
impl Unpin for CNContainerType
impl UnsafeUnpin for CNContainerType
impl UnwindSafe for CNContainerType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more