pub struct UserProfileUpdateSummary {
pub update_successes: i32,
pub update_failures: i32,
pub changed_contacts: Vec<Contact>,
pub undocumented: BTreeMap<String, JsonObject>,
}Fields§
§update_successes: i32§update_failures: i32§changed_contacts: Vec<Contact>§undocumented: BTreeMap<String, JsonObject>Trait Implementations§
Source§impl Clone for UserProfileUpdateSummary
impl Clone for UserProfileUpdateSummary
Source§fn clone(&self) -> UserProfileUpdateSummary
fn clone(&self) -> UserProfileUpdateSummary
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 UserProfileUpdateSummary
impl Debug for UserProfileUpdateSummary
Source§impl<'de> Deserialize<'de> for UserProfileUpdateSummary
impl<'de> Deserialize<'de> for UserProfileUpdateSummary
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 UserProfileUpdateSummary
impl PartialEq for UserProfileUpdateSummary
Source§impl Serialize for UserProfileUpdateSummary
impl Serialize for UserProfileUpdateSummary
impl StructuralPartialEq for UserProfileUpdateSummary
Auto Trait Implementations§
impl Freeze for UserProfileUpdateSummary
impl RefUnwindSafe for UserProfileUpdateSummary
impl Send for UserProfileUpdateSummary
impl Sync for UserProfileUpdateSummary
impl Unpin for UserProfileUpdateSummary
impl UnwindSafe for UserProfileUpdateSummary
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