pub enum MailboxProperty {
Id,
Name,
ParentId,
Role,
SortOrder,
TotalEmails,
UnreadEmails,
TotalThreads,
UnreadThreads,
MyRights,
IsSubscribed,
}Expand description
Property selector for crate::Mailbox /get and /set.
Variants§
Id
The id property (RFC 8621 §2).
Name
The name property (RFC 8621 §2).
ParentId
The parentId property (RFC 8621 §2).
Role
The role property (RFC 8621 §2).
SortOrder
The sortOrder property (RFC 8621 §2).
TotalEmails
The totalEmails property (RFC 8621 §2).
UnreadEmails
The unreadEmails property (RFC 8621 §2).
TotalThreads
The totalThreads property (RFC 8621 §2).
UnreadThreads
The unreadThreads property (RFC 8621 §2).
MyRights
The myRights property (RFC 8621 §2).
IsSubscribed
The isSubscribed property (RFC 8621 §2).
Trait Implementations§
Source§impl Clone for MailboxProperty
impl Clone for MailboxProperty
Source§fn clone(&self) -> MailboxProperty
fn clone(&self) -> MailboxProperty
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 MailboxProperty
impl Debug for MailboxProperty
impl Eq for MailboxProperty
Source§impl Hash for MailboxProperty
impl Hash for MailboxProperty
Source§impl PartialEq for MailboxProperty
impl PartialEq for MailboxProperty
Source§fn eq(&self, other: &MailboxProperty) -> bool
fn eq(&self, other: &MailboxProperty) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MailboxProperty
Auto Trait Implementations§
impl Freeze for MailboxProperty
impl RefUnwindSafe for MailboxProperty
impl Send for MailboxProperty
impl Sync for MailboxProperty
impl Unpin for MailboxProperty
impl UnsafeUnpin for MailboxProperty
impl UnwindSafe for MailboxProperty
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