pub struct GetAllContactResponse {
pub contact_methods: Vec<Contact>,
}Expand description
Response for getting all contacts of a specific type.
Fields§
§contact_methods: Vec<Contact>The list of contact methods of the requested type.
Trait Implementations§
Source§impl Clone for GetAllContactResponse
impl Clone for GetAllContactResponse
Source§fn clone(&self) -> GetAllContactResponse
fn clone(&self) -> GetAllContactResponse
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 GetAllContactResponse
impl Debug for GetAllContactResponse
Source§impl<'de> Deserialize<'de> for GetAllContactResponse
impl<'de> Deserialize<'de> for GetAllContactResponse
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 GetAllContactResponse
impl RefUnwindSafe for GetAllContactResponse
impl Send for GetAllContactResponse
impl Sync for GetAllContactResponse
impl Unpin for GetAllContactResponse
impl UnsafeUnpin for GetAllContactResponse
impl UnwindSafe for GetAllContactResponse
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