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