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