pub struct ContactFolder {
pub parent_folder_id: String,
pub display_name: String,
pub contacts: Vec<Contact>,
pub child_folders: Vec<ContactFolder>,
pub single_value_extended_properties: Vec<SingleValueLegacyExtendedProperty>,
pub multi_value_extended_properties: Vec<MultiValueLegacyExtendedProperty>,
}
Fields§
§parent_folder_id: String
§display_name: String
§contacts: Vec<Contact>
§child_folders: Vec<ContactFolder>
§single_value_extended_properties: Vec<SingleValueLegacyExtendedProperty>
§multi_value_extended_properties: Vec<MultiValueLegacyExtendedProperty>
Trait Implementations§
Source§impl Clone for ContactFolder
impl Clone for ContactFolder
Source§fn clone(&self) -> ContactFolder
fn clone(&self) -> ContactFolder
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ContactFolder
impl Debug for ContactFolder
Source§impl<'de> Deserialize<'de> for ContactFolder
impl<'de> Deserialize<'de> for ContactFolder
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ContactFolder
impl PartialEq for ContactFolder
Source§impl Serialize for ContactFolder
impl Serialize for ContactFolder
impl Eq for ContactFolder
impl StructuralPartialEq for ContactFolder
Auto Trait Implementations§
impl Freeze for ContactFolder
impl RefUnwindSafe for ContactFolder
impl Send for ContactFolder
impl Sync for ContactFolder
impl Unpin for ContactFolder
impl UnwindSafe for ContactFolder
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