pub struct UserContact {
pub user_contact_link_id: i64,
pub conn_req_contact: String,
pub group_id: Option<i64>,
pub undocumented: BTreeMap<String, JsonObject>,
}Fields§
§user_contact_link_id: i64§conn_req_contact: String§group_id: Option<i64>§undocumented: BTreeMap<String, JsonObject>Trait Implementations§
Source§impl Clone for UserContact
impl Clone for UserContact
Source§fn clone(&self) -> UserContact
fn clone(&self) -> UserContact
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 UserContact
impl Debug for UserContact
Source§impl<'de> Deserialize<'de> for UserContact
impl<'de> Deserialize<'de> for UserContact
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 UserContact
impl PartialEq for UserContact
Source§impl Serialize for UserContact
impl Serialize for UserContact
impl StructuralPartialEq for UserContact
Auto Trait Implementations§
impl Freeze for UserContact
impl RefUnwindSafe for UserContact
impl Send for UserContact
impl Sync for UserContact
impl Unpin for UserContact
impl UnwindSafe for UserContact
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