Enum imessage_database::tables::messages::MessageType
source · pub enum MessageType<'a> {
Normal(Variant<'a>, Expressive<'a>),
Thread(Variant<'a>, Expressive<'a>),
Reply(Variant<'a>, Expressive<'a>),
}Expand description
Represents a broad category of messages: standalone, thread originators, and thread replies.
Variants§
Normal(Variant<'a>, Expressive<'a>)
A normal message not associated with any others
Thread(Variant<'a>, Expressive<'a>)
A message that has replies
Reply(Variant<'a>, Expressive<'a>)
A message that is a reply to another message
Trait Implementations§
Auto Trait Implementations§
impl<'a> RefUnwindSafe for MessageType<'a>
impl<'a> Send for MessageType<'a>
impl<'a> Sync for MessageType<'a>
impl<'a> Unpin for MessageType<'a>
impl<'a> UnwindSafe for MessageType<'a>
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