pub enum M2dirFlagSetError {
UnexpectedArg,
MissingArg,
}Expand description
Failure causes during the m2dir flag SET flow.
Variants§
Trait Implementations§
Source§impl Clone for M2dirFlagSetError
impl Clone for M2dirFlagSetError
Source§fn clone(&self) -> M2dirFlagSetError
fn clone(&self) -> M2dirFlagSetError
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 M2dirFlagSetError
impl Debug for M2dirFlagSetError
Source§impl Display for M2dirFlagSetError
impl Display for M2dirFlagSetError
Source§impl Error for M2dirFlagSetError
impl Error for M2dirFlagSetError
1.30.0 · 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<M2dirFlagSetError> for M2dirClientError
Available on crate feature client only.
impl From<M2dirFlagSetError> for M2dirClientError
Available on crate feature
client only.Source§fn from(source: M2dirFlagSetError) -> Self
fn from(source: M2dirFlagSetError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for M2dirFlagSetError
impl RefUnwindSafe for M2dirFlagSetError
impl Send for M2dirFlagSetError
impl Sync for M2dirFlagSetError
impl Unpin for M2dirFlagSetError
impl UnsafeUnpin for M2dirFlagSetError
impl UnwindSafe for M2dirFlagSetError
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