pub enum ImapMessageMoveError {
No(String),
Bad(String),
Bye(String),
MissingTagged,
Send(SendImapCommandError),
}Expand description
Failure causes during the IMAP MOVE flow.
Variants§
Trait Implementations§
Source§impl Clone for ImapMessageMoveError
impl Clone for ImapMessageMoveError
Source§fn clone(&self) -> ImapMessageMoveError
fn clone(&self) -> ImapMessageMoveError
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 ImapMessageMoveError
impl Debug for ImapMessageMoveError
Source§impl Display for ImapMessageMoveError
impl Display for ImapMessageMoveError
Source§impl Error for ImapMessageMoveError
impl Error for ImapMessageMoveError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<ImapMessageMoveError> for ImapClientStdError
Available on crate feature client only.
impl From<ImapMessageMoveError> for ImapClientStdError
Available on crate feature
client only.Source§fn from(source: ImapMessageMoveError) -> Self
fn from(source: ImapMessageMoveError) -> Self
Converts to this type from the input type.
Source§impl From<SendImapCommandError> for ImapMessageMoveError
impl From<SendImapCommandError> for ImapMessageMoveError
Source§fn from(source: SendImapCommandError) -> Self
fn from(source: SendImapCommandError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ImapMessageMoveError
impl RefUnwindSafe for ImapMessageMoveError
impl Send for ImapMessageMoveError
impl Sync for ImapMessageMoveError
impl Unpin for ImapMessageMoveError
impl UnsafeUnpin for ImapMessageMoveError
impl UnwindSafe for ImapMessageMoveError
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