pub struct BatchUpdateContactsResponse {
pub update_result: Option<HashMap<String, PersonResponse>>,
}Expand description
If not successful, returns BatchUpdateContactsErrorDetails, a list of errors corresponding to each contact. The response to a request to update a batch of contacts.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- batch update contacts people (response)
Fields§
§update_result: Option<HashMap<String, PersonResponse>>A map of resource names to the contacts that were updated, unless the request read_mask is empty.
Trait Implementations§
Source§impl Clone for BatchUpdateContactsResponse
impl Clone for BatchUpdateContactsResponse
Source§fn clone(&self) -> BatchUpdateContactsResponse
fn clone(&self) -> BatchUpdateContactsResponse
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 BatchUpdateContactsResponse
impl Debug for BatchUpdateContactsResponse
Source§impl Default for BatchUpdateContactsResponse
impl Default for BatchUpdateContactsResponse
Source§fn default() -> BatchUpdateContactsResponse
fn default() -> BatchUpdateContactsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BatchUpdateContactsResponse
impl<'de> Deserialize<'de> for BatchUpdateContactsResponse
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
impl ResponseResult for BatchUpdateContactsResponse
Auto Trait Implementations§
impl Freeze for BatchUpdateContactsResponse
impl RefUnwindSafe for BatchUpdateContactsResponse
impl Send for BatchUpdateContactsResponse
impl Sync for BatchUpdateContactsResponse
impl Unpin for BatchUpdateContactsResponse
impl UnwindSafe for BatchUpdateContactsResponse
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