pub struct Contacts {
pub mobile_phone: Option<String>,
pub home_phone: Option<String>,
}Expand description
Information about the user’s phone numbers
Fields§
§mobile_phone: Option<String>Mobile phone number of the user (only for Standalone applications)
home_phone: Option<String>Additional phone number of the user
Trait Implementations§
source§impl<'de> Deserialize<'de> for Contacts
impl<'de> Deserialize<'de> for Contacts
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 RefUnwindSafe for Contacts
impl Send for Contacts
impl Sync for Contacts
impl Unpin for Contacts
impl UnwindSafe for Contacts
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