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