pub enum PhoneInfoKind {
Mobile,
FixedLine,
PremiumRate,
TollFree,
Voip,
Unknown,
}Expand description
Describes a kind of phone number.
Variants§
Trait Implementations§
Source§impl Clone for PhoneInfoKind
impl Clone for PhoneInfoKind
Source§fn clone(&self) -> PhoneInfoKind
fn clone(&self) -> PhoneInfoKind
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 PhoneInfoKind
impl Debug for PhoneInfoKind
Source§impl<'de> Deserialize<'de> for PhoneInfoKind
impl<'de> Deserialize<'de> for PhoneInfoKind
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 PhoneInfoKind
impl PartialEq for PhoneInfoKind
Source§impl Serialize for PhoneInfoKind
impl Serialize for PhoneInfoKind
impl Copy for PhoneInfoKind
impl StructuralPartialEq for PhoneInfoKind
Auto Trait Implementations§
impl Freeze for PhoneInfoKind
impl RefUnwindSafe for PhoneInfoKind
impl Send for PhoneInfoKind
impl Sync for PhoneInfoKind
impl Unpin for PhoneInfoKind
impl UnwindSafe for PhoneInfoKind
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