pub struct UpsertContactResponse {
pub contact: Contact,
pub new: bool,
pub trace_id: Option<String>,
}Fields§
§contact: Contact§new: bool§trace_id: Option<String>Trait Implementations§
Source§impl Clone for UpsertContactResponse
impl Clone for UpsertContactResponse
Source§fn clone(&self) -> UpsertContactResponse
fn clone(&self) -> UpsertContactResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UpsertContactResponse
impl Debug for UpsertContactResponse
Source§impl<'de> Deserialize<'de> for UpsertContactResponse
impl<'de> Deserialize<'de> for UpsertContactResponse
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 UpsertContactResponse
impl RefUnwindSafe for UpsertContactResponse
impl Send for UpsertContactResponse
impl Sync for UpsertContactResponse
impl Unpin for UpsertContactResponse
impl UnsafeUnpin for UpsertContactResponse
impl UnwindSafe for UpsertContactResponse
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