pub struct ChangeImportedContacts {
pub contacts: Vec<Contact>,
}
Expand description
Changes imported contacts using the list of current user contacts saved on the device. Imports newly added contacts and, if at least the file database is enabled, deletes recently deleted contacts. Query result depends on the result of the previous query, so only one query is possible at the same time
Fields§
§contacts: Vec<Contact>
The new list of contacts, contact’s vCard are ignored and are not imported
Trait Implementations§
Source§impl Clone for ChangeImportedContacts
impl Clone for ChangeImportedContacts
Source§fn clone(&self) -> ChangeImportedContacts
fn clone(&self) -> ChangeImportedContacts
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 ChangeImportedContacts
impl Debug for ChangeImportedContacts
Source§impl<'de> Deserialize<'de> for ChangeImportedContacts
impl<'de> Deserialize<'de> for ChangeImportedContacts
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 Method for ChangeImportedContacts
impl Method for ChangeImportedContacts
Auto Trait Implementations§
impl Freeze for ChangeImportedContacts
impl RefUnwindSafe for ChangeImportedContacts
impl Send for ChangeImportedContacts
impl Sync for ChangeImportedContacts
impl Unpin for ChangeImportedContacts
impl UnwindSafe for ChangeImportedContacts
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