pub struct ImportContactsResponse {
pub imported: i32,
pub skipped_duplicates: i32,
pub errors: Vec<ImportContactsError>,
pub total_errors: i32,
}Fields§
§imported: i32§skipped_duplicates: i32§errors: Vec<ImportContactsError>§total_errors: i32Trait Implementations§
Source§impl Clone for ImportContactsResponse
impl Clone for ImportContactsResponse
Source§fn clone(&self) -> ImportContactsResponse
fn clone(&self) -> ImportContactsResponse
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 ImportContactsResponse
impl Debug for ImportContactsResponse
Source§impl<'de> Deserialize<'de> for ImportContactsResponse
impl<'de> Deserialize<'de> for ImportContactsResponse
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
Auto Trait Implementations§
impl Freeze for ImportContactsResponse
impl RefUnwindSafe for ImportContactsResponse
impl Send for ImportContactsResponse
impl Sync for ImportContactsResponse
impl Unpin for ImportContactsResponse
impl UnsafeUnpin for ImportContactsResponse
impl UnwindSafe for ImportContactsResponse
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