pub enum ImapMessageMoveError {
Select(ImapMailboxSelectError),
Move(ImapMessageMoveError),
InvalidMailbox(String),
InvalidUid(String),
EmptyUidSet,
ResumedAfterDone,
}Available on crate feature
imap only.Expand description
Errors produced by ImapMessageMove.
Variants§
Select(ImapMailboxSelectError)
Move(ImapMessageMoveError)
InvalidMailbox(String)
InvalidUid(String)
EmptyUidSet
ResumedAfterDone
Trait Implementations§
Source§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<ImapMailboxSelectError> for ImapMessageMoveError
impl From<ImapMailboxSelectError> for ImapMessageMoveError
Source§fn from(source: ImapMailboxSelectError) -> Self
fn from(source: ImapMailboxSelectError) -> Self
Converts to this type from the input type.
Source§impl From<ImapMessageMoveError> for ImapClientError
Available on crate feature client only.
impl From<ImapMessageMoveError> for ImapClientError
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<ImapMessageMoveError> for ImapMessageMoveError
impl From<ImapMessageMoveError> for ImapMessageMoveError
Source§fn from(source: InnerImapMessageMoveError) -> Self
fn from(source: InnerImapMessageMoveError) -> Self
Converts to this type from the input type.
Source§impl From<InvalidMailboxName> for ImapMessageMoveError
impl From<InvalidMailboxName> for ImapMessageMoveError
Source§fn from(err: InvalidMailboxName) -> Self
fn from(err: InvalidMailboxName) -> Self
Converts to this type from the input type.
Source§impl From<InvalidUidSet> for ImapMessageMoveError
impl From<InvalidUidSet> for ImapMessageMoveError
Source§fn from(err: InvalidUidSet) -> Self
fn from(err: InvalidUidSet) -> 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
Source§impl<T, S> SpanWrap<S> for Twhere
S: WrappingSpan<T>,
impl<T, S> SpanWrap<S> for Twhere
S: WrappingSpan<T>,
Source§fn with_span(self, span: S) -> <S as WrappingSpan<Self>>::Spanned
fn with_span(self, span: S) -> <S as WrappingSpan<Self>>::Spanned
Invokes
WrappingSpan::make_wrapped to wrap an AST node in a span.