pub struct ImapMailboxSortOptions {
pub uid: bool,
}Expand description
Options for ImapMailboxSort::new.
Fields§
§uid: boolWhen true, send UID SORT; returned ids are UIDs.
Trait Implementations§
Source§impl Clone for ImapMailboxSortOptions
impl Clone for ImapMailboxSortOptions
Source§fn clone(&self) -> ImapMailboxSortOptions
fn clone(&self) -> ImapMailboxSortOptions
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 ImapMailboxSortOptions
impl Debug for ImapMailboxSortOptions
Source§impl Default for ImapMailboxSortOptions
impl Default for ImapMailboxSortOptions
Source§fn default() -> ImapMailboxSortOptions
fn default() -> ImapMailboxSortOptions
Returns the “default value” for a type. Read more
impl Eq for ImapMailboxSortOptions
Source§impl PartialEq for ImapMailboxSortOptions
impl PartialEq for ImapMailboxSortOptions
Source§fn eq(&self, other: &ImapMailboxSortOptions) -> bool
fn eq(&self, other: &ImapMailboxSortOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ImapMailboxSortOptions
Auto Trait Implementations§
impl Freeze for ImapMailboxSortOptions
impl RefUnwindSafe for ImapMailboxSortOptions
impl Send for ImapMailboxSortOptions
impl Sync for ImapMailboxSortOptions
impl Unpin for ImapMailboxSortOptions
impl UnsafeUnpin for ImapMailboxSortOptions
impl UnwindSafe for ImapMailboxSortOptions
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