pub struct PrimaryPhoneInfo {
pub phone_id: Option<String>,
pub phone_type: Option<String>,
pub phone_area_code: Option<String>,
pub phone_prefix: Option<String>,
pub phone_line_number: Option<String>,
}Fields§
§phone_id: Option<String>§phone_type: Option<String>§phone_area_code: Option<String>§phone_prefix: Option<String>§phone_line_number: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for PrimaryPhoneInfo
impl Clone for PrimaryPhoneInfo
Source§fn clone(&self) -> PrimaryPhoneInfo
fn clone(&self) -> PrimaryPhoneInfo
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 PrimaryPhoneInfo
impl Debug for PrimaryPhoneInfo
Source§impl<'de> Deserialize<'de> for PrimaryPhoneInfo
impl<'de> Deserialize<'de> for PrimaryPhoneInfo
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 PrimaryPhoneInfo
impl RefUnwindSafe for PrimaryPhoneInfo
impl Send for PrimaryPhoneInfo
impl Sync for PrimaryPhoneInfo
impl Unpin for PrimaryPhoneInfo
impl UnsafeUnpin for PrimaryPhoneInfo
impl UnwindSafe for PrimaryPhoneInfo
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