pub enum AttributeV1_1 {
DeliveryStatus(DeliveryStatus),
ConversationId(u128),
ConversationName(String),
Direction(Direction),
AttachmentMimeTypes(Vec<String>),
}
Expand description
Additional information unique to messages-listing v1.1. See MAP v1.4.2 section 3.1.6.2.
Variants§
DeliveryStatus(DeliveryStatus)
ConversationId(u128)
ConversationName(String)
Direction(Direction)
AttachmentMimeTypes(Vec<String>)
Trait Implementations§
Source§impl Debug for AttributeV1_1
impl Debug for AttributeV1_1
Source§impl Hash for AttributeV1_1
impl Hash for AttributeV1_1
Source§impl PartialEq for AttributeV1_1
impl PartialEq for AttributeV1_1
Note that partial equality for AttributeV1_1 indicates that two attributes are of the same type, but not necessarily the same value.
Source§impl TryFrom<&OwnedAttribute> for AttributeV1_1
impl TryFrom<&OwnedAttribute> for AttributeV1_1
impl Eq for AttributeV1_1
Auto Trait Implementations§
impl Freeze for AttributeV1_1
impl RefUnwindSafe for AttributeV1_1
impl Send for AttributeV1_1
impl Sync for AttributeV1_1
impl Unpin for AttributeV1_1
impl UnwindSafe for AttributeV1_1
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