pub enum JmapFlagStoreError {
Set(JmapEmailSetError),
NotUpdated(Vec<String>),
}Available on crate feature
jmap only.Expand description
Errors produced by JmapFlagStore.
Variants§
Set(JmapEmailSetError)
NotUpdated(Vec<String>)
Trait Implementations§
Source§impl Debug for JmapFlagStoreError
impl Debug for JmapFlagStoreError
Source§impl Display for JmapFlagStoreError
impl Display for JmapFlagStoreError
Source§impl Error for JmapFlagStoreError
impl Error for JmapFlagStoreError
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<JmapEmailSetError> for JmapFlagStoreError
impl From<JmapEmailSetError> for JmapFlagStoreError
Source§impl From<JmapFlagStoreError> for JmapClientError
Available on crate feature client only.
impl From<JmapFlagStoreError> for JmapClientError
Available on crate feature
client only.Source§fn from(source: JmapFlagStoreError) -> Self
fn from(source: JmapFlagStoreError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for JmapFlagStoreError
impl RefUnwindSafe for JmapFlagStoreError
impl Send for JmapFlagStoreError
impl Sync for JmapFlagStoreError
impl Unpin for JmapFlagStoreError
impl UnsafeUnpin for JmapFlagStoreError
impl UnwindSafe for JmapFlagStoreError
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.