pub enum PhoneNumberType {
Mobile,
FixedLine,
TollFree,
PremiumRate,
SharedCost,
Voip,
PersonalNumber,
Pager,
Uan,
Emergency,
Voicemail,
Unknown,
}Expand description
Phone number types
Variants§
Mobile
Mobile/cellular phone
FixedLine
Fixed line (landline)
TollFree
Toll-free number
PremiumRate
Premium rate number
Shared cost number
Voip
Voice over IP
PersonalNumber
Personal number
Pager
Pager
Uan
Universal Access Number
Emergency
Emergency services
Voicemail
Voicemail
Unknown
Unknown type
Trait Implementations§
Source§impl Clone for PhoneNumberType
impl Clone for PhoneNumberType
Source§fn clone(&self) -> PhoneNumberType
fn clone(&self) -> PhoneNumberType
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 PhoneNumberType
impl Debug for PhoneNumberType
Source§impl Hash for PhoneNumberType
impl Hash for PhoneNumberType
Source§impl PartialEq for PhoneNumberType
impl PartialEq for PhoneNumberType
impl Copy for PhoneNumberType
impl Eq for PhoneNumberType
impl StructuralPartialEq for PhoneNumberType
Auto Trait Implementations§
impl Freeze for PhoneNumberType
impl RefUnwindSafe for PhoneNumberType
impl Send for PhoneNumberType
impl Sync for PhoneNumberType
impl Unpin for PhoneNumberType
impl UnwindSafe for PhoneNumberType
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