pub enum JmapEmailProperty {
Show 26 variants
Id,
BlobId,
ThreadId,
MailboxIds,
Keywords,
Size,
ReceivedAt,
MessageId,
InReplyTo,
References,
Sender,
From,
To,
Cc,
Bcc,
ReplyTo,
Subject,
SentAt,
BodyStructure,
BodyValues,
TextBody,
HtmlBody,
Attachments,
HasAttachment,
Preview,
Headers,
}Expand description
JmapEmail properties requestable in Email/get (RFC 8621 §4.1).
Variants§
Id
The id property.
BlobId
The blobId property.
ThreadId
The threadId property.
MailboxIds
The mailboxIds property.
Keywords
The keywords property.
Size
The size property.
ReceivedAt
The receivedAt property.
MessageId
The messageId property.
InReplyTo
The inReplyTo property.
References
The references property.
Sender
The sender property.
From
The from property.
To
The to property.
Cc
The cc property.
Bcc
The bcc property.
ReplyTo
The replyTo property.
Subject
The subject property.
SentAt
The sentAt property.
BodyStructure
The bodyStructure property.
BodyValues
The bodyValues property.
TextBody
The textBody property.
HtmlBody
The htmlBody property.
Attachments
The attachments property.
HasAttachment
The hasAttachment property.
Preview
The preview property.
Headers
The headers property.
Trait Implementations§
Source§impl Clone for JmapEmailProperty
impl Clone for JmapEmailProperty
Source§fn clone(&self) -> JmapEmailProperty
fn clone(&self) -> JmapEmailProperty
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 JmapEmailProperty
impl Debug for JmapEmailProperty
Auto Trait Implementations§
impl Freeze for JmapEmailProperty
impl RefUnwindSafe for JmapEmailProperty
impl Send for JmapEmailProperty
impl Sync for JmapEmailProperty
impl Unpin for JmapEmailProperty
impl UnsafeUnpin for JmapEmailProperty
impl UnwindSafe for JmapEmailProperty
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