pub enum IncomingMessageType {
Sms,
DataSms,
Mms,
MmsDownloaded,
Other,
}Expand description
The type of an incoming message.
Variants§
Trait Implementations§
Source§impl Clone for IncomingMessageType
impl Clone for IncomingMessageType
Source§fn clone(&self) -> IncomingMessageType
fn clone(&self) -> IncomingMessageType
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 IncomingMessageType
impl Debug for IncomingMessageType
Source§impl<'de> Deserialize<'de> for IncomingMessageType
impl<'de> Deserialize<'de> for IncomingMessageType
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
impl Eq for IncomingMessageType
Source§impl PartialEq for IncomingMessageType
impl PartialEq for IncomingMessageType
Source§impl Serialize for IncomingMessageType
impl Serialize for IncomingMessageType
impl StructuralPartialEq for IncomingMessageType
Auto Trait Implementations§
impl Freeze for IncomingMessageType
impl RefUnwindSafe for IncomingMessageType
impl Send for IncomingMessageType
impl Sync for IncomingMessageType
impl Unpin for IncomingMessageType
impl UnsafeUnpin for IncomingMessageType
impl UnwindSafe for IncomingMessageType
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