#[repr(u8)]pub enum TypeOfNumber {
Unknown = 0,
International = 16,
National = 32,
Special = 48,
Gsm = 80,
Short = 96,
Reserved = 112,
}Expand description
Type of number value - used as part of phone numbers to indicate whether the number is international, alphanumeric, etc.
Variants§
Unknown = 0
Unknown number type (‘let the network handle it please’).
International = 16
International (i.e. starting with +). This is probably what you want when sending messages.
National = 32
National number - no prefix or suffix added.
Special = 48
Special number - you can’t send messages with this type.
Gsm = 80
Alphanumeric number - i.e. this isn’t a phone number, it’s actually some text that indicates who the sender is (e.g. when banks/other companies send you SMSes).
You can’t send messages with this type.
Short = 96
Short number (not in use).
Reserved = 112
Reserved (not in use).
Trait Implementations§
Source§impl Clone for TypeOfNumber
impl Clone for TypeOfNumber
Source§fn clone(&self) -> TypeOfNumber
fn clone(&self) -> TypeOfNumber
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TypeOfNumber
impl Debug for TypeOfNumber
Source§impl FromPrimitive for TypeOfNumber
impl FromPrimitive for TypeOfNumber
Source§fn from_i64(n: i64) -> Option<Self>
fn from_i64(n: i64) -> Option<Self>
Converts an
i64 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_u64(n: u64) -> Option<Self>
fn from_u64(n: u64) -> Option<Self>
Converts an
u64 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_isize(n: isize) -> Option<Self>
fn from_isize(n: isize) -> Option<Self>
Converts an
isize to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_i8(n: i8) -> Option<Self>
fn from_i8(n: i8) -> Option<Self>
Converts an
i8 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_i16(n: i16) -> Option<Self>
fn from_i16(n: i16) -> Option<Self>
Converts an
i16 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_i32(n: i32) -> Option<Self>
fn from_i32(n: i32) -> Option<Self>
Converts an
i32 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_i128(n: i128) -> Option<Self>
fn from_i128(n: i128) -> Option<Self>
Converts an
i128 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read moreSource§fn from_usize(n: usize) -> Option<Self>
fn from_usize(n: usize) -> Option<Self>
Converts a
usize to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_u8(n: u8) -> Option<Self>
fn from_u8(n: u8) -> Option<Self>
Converts an
u8 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_u16(n: u16) -> Option<Self>
fn from_u16(n: u16) -> Option<Self>
Converts an
u16 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_u32(n: u32) -> Option<Self>
fn from_u32(n: u32) -> Option<Self>
Converts an
u32 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§fn from_u128(n: u128) -> Option<Self>
fn from_u128(n: u128) -> Option<Self>
Converts an
u128 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read moreSource§impl Hash for TypeOfNumber
impl Hash for TypeOfNumber
Source§impl Ord for TypeOfNumber
impl Ord for TypeOfNumber
Source§fn cmp(&self, other: &TypeOfNumber) -> Ordering
fn cmp(&self, other: &TypeOfNumber) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for TypeOfNumber
impl PartialEq for TypeOfNumber
Source§fn eq(&self, other: &TypeOfNumber) -> bool
fn eq(&self, other: &TypeOfNumber) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for TypeOfNumber
impl PartialOrd for TypeOfNumber
impl Copy for TypeOfNumber
impl Eq for TypeOfNumber
impl StructuralPartialEq for TypeOfNumber
Auto Trait Implementations§
impl Freeze for TypeOfNumber
impl RefUnwindSafe for TypeOfNumber
impl Send for TypeOfNumber
impl Sync for TypeOfNumber
impl Unpin for TypeOfNumber
impl UnsafeUnpin for TypeOfNumber
impl UnwindSafe for TypeOfNumber
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