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
Note that partial equality for AttributeV1_1 indicates that two attributes
are of the same type, but not necessarily the same value.
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
§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more