pub struct PhoneContact {Show 13 fields
pub user_name: String,
pub v4: Option<String>,
pub nick_name: Option<String>,
pub sex: i32,
pub phone_md5: String,
pub signature: String,
pub alias: Option<String>,
pub country: String,
pub big_head_img_url: String,
pub small_head_img_url: String,
pub province: String,
pub city: String,
pub personal_card: i32,
}Fields§
§user_name: String§v4: Option<String>§nick_name: Option<String>§sex: i32§phone_md5: String§signature: String§alias: Option<String>§country: String§big_head_img_url: String§small_head_img_url: String§province: String§city: String§personal_card: i32Trait Implementations§
Source§impl Clone for PhoneContact
impl Clone for PhoneContact
Source§fn clone(&self) -> PhoneContact
fn clone(&self) -> PhoneContact
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 PhoneContact
impl Debug for PhoneContact
Source§impl Default for PhoneContact
impl Default for PhoneContact
Source§fn default() -> PhoneContact
fn default() -> PhoneContact
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PhoneContact
impl<'de> Deserialize<'de> for PhoneContact
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 PhoneContact
impl RefUnwindSafe for PhoneContact
impl Send for PhoneContact
impl Sync for PhoneContact
impl Unpin for PhoneContact
impl UnwindSafe for PhoneContact
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