pub struct ExtractContactResponse {
pub contacts: HashMap<String, Vec<ExtractedContact>>,
}Expand description
Response from contact extraction.
Fields§
§contacts: HashMap<String, Vec<ExtractedContact>>Extracted contacts indexed by message ID.
Trait Implementations§
Source§impl Clone for ExtractContactResponse
impl Clone for ExtractContactResponse
Source§fn clone(&self) -> ExtractContactResponse
fn clone(&self) -> ExtractContactResponse
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 ExtractContactResponse
impl Debug for ExtractContactResponse
Source§impl<'de> Deserialize<'de> for ExtractContactResponse
impl<'de> Deserialize<'de> for ExtractContactResponse
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 ExtractContactResponse
impl PartialEq for ExtractContactResponse
Source§fn eq(&self, other: &ExtractContactResponse) -> bool
fn eq(&self, other: &ExtractContactResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ExtractContactResponse
impl Serialize for ExtractContactResponse
impl StructuralPartialEq for ExtractContactResponse
Auto Trait Implementations§
impl Freeze for ExtractContactResponse
impl RefUnwindSafe for ExtractContactResponse
impl Send for ExtractContactResponse
impl Sync for ExtractContactResponse
impl Unpin for ExtractContactResponse
impl UnsafeUnpin for ExtractContactResponse
impl UnwindSafe for ExtractContactResponse
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