pub struct ExternalContact {
pub external_userid: Option<String>,
pub position: Option<String>,
pub name: Option<String>,
pub nickname: Option<String>,
pub avatar: Option<String>,
pub corp_name: Option<String>,
pub corp_full_name: Option<String>,
pub type: Option<u8>,
pub gender: Option<u8>,
pub unionid: Option<String>,
pub external_profile: Option<ExternalProfile>,
}Expand description
外部联系人
Fields§
§external_userid: Option<String>§position: Option<String>§name: Option<String>§nickname: Option<String>§avatar: Option<String>§corp_name: Option<String>§corp_full_name: Option<String>§type: Option<u8>§gender: Option<u8>§unionid: Option<String>§external_profile: Option<ExternalProfile>Trait Implementations§
Source§impl Clone for ExternalContact
impl Clone for ExternalContact
Source§fn clone(&self) -> ExternalContact
fn clone(&self) -> ExternalContact
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 ExternalContact
impl Debug for ExternalContact
Source§impl<'de> Deserialize<'de> for ExternalContact
impl<'de> Deserialize<'de> for ExternalContact
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 ExternalContact
impl RefUnwindSafe for ExternalContact
impl Send for ExternalContact
impl Sync for ExternalContact
impl Unpin for ExternalContact
impl UnwindSafe for ExternalContact
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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