pub enum InvalidMailboxName {
Store(M2dirStoreError),
}Available on crate feature
m2dir only.Expand description
Errors produced by the mailbox-path resolver.
Variants§
Store(M2dirStoreError)
Trait Implementations§
Source§impl Debug for InvalidMailboxName
impl Debug for InvalidMailboxName
Source§impl Display for InvalidMailboxName
impl Display for InvalidMailboxName
Source§impl Error for InvalidMailboxName
impl Error for InvalidMailboxName
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<InvalidMailboxName> for M2dirEnvelopeListError
impl From<InvalidMailboxName> for M2dirEnvelopeListError
Source§fn from(source: InvalidMailboxName) -> Self
fn from(source: InvalidMailboxName) -> Self
Converts to this type from the input type.
Source§impl From<InvalidMailboxName> for M2dirEnvelopeSearchError
Available on crate feature search only.
impl From<InvalidMailboxName> for M2dirEnvelopeSearchError
Available on crate feature
search only.Source§fn from(source: InvalidMailboxName) -> Self
fn from(source: InvalidMailboxName) -> Self
Converts to this type from the input type.
Source§impl From<InvalidMailboxName> for M2dirFlagStoreError
impl From<InvalidMailboxName> for M2dirFlagStoreError
Source§fn from(source: InvalidMailboxName) -> Self
fn from(source: InvalidMailboxName) -> Self
Converts to this type from the input type.
Source§impl From<InvalidMailboxName> for M2dirMailboxDeleteError
impl From<InvalidMailboxName> for M2dirMailboxDeleteError
Source§fn from(source: InvalidMailboxName) -> Self
fn from(source: InvalidMailboxName) -> Self
Converts to this type from the input type.
Source§impl From<InvalidMailboxName> for M2dirMessageAddError
impl From<InvalidMailboxName> for M2dirMessageAddError
Source§fn from(source: InvalidMailboxName) -> Self
fn from(source: InvalidMailboxName) -> Self
Converts to this type from the input type.
Source§impl From<InvalidMailboxName> for M2dirMessageCopyError
impl From<InvalidMailboxName> for M2dirMessageCopyError
Source§fn from(source: InvalidMailboxName) -> Self
fn from(source: InvalidMailboxName) -> Self
Converts to this type from the input type.
Source§impl From<InvalidMailboxName> for M2dirMessageDeleteError
impl From<InvalidMailboxName> for M2dirMessageDeleteError
Source§fn from(source: InvalidMailboxName) -> Self
fn from(source: InvalidMailboxName) -> Self
Converts to this type from the input type.
Source§impl From<InvalidMailboxName> for M2dirMessageGetError
impl From<InvalidMailboxName> for M2dirMessageGetError
Source§fn from(source: InvalidMailboxName) -> Self
fn from(source: InvalidMailboxName) -> Self
Converts to this type from the input type.
Source§impl From<InvalidMailboxName> for M2dirMessageMoveError
impl From<InvalidMailboxName> for M2dirMessageMoveError
Source§fn from(source: InvalidMailboxName) -> Self
fn from(source: InvalidMailboxName) -> Self
Converts to this type from the input type.
Source§impl From<M2dirStoreError> for InvalidMailboxName
impl From<M2dirStoreError> for InvalidMailboxName
Source§fn from(source: M2dirStoreError) -> Self
fn from(source: M2dirStoreError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InvalidMailboxName
impl RefUnwindSafe for InvalidMailboxName
impl Send for InvalidMailboxName
impl Sync for InvalidMailboxName
impl Unpin for InvalidMailboxName
impl UnsafeUnpin for InvalidMailboxName
impl UnwindSafe for InvalidMailboxName
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.