pub enum CheckOptionsDecodeError {
MissingInitiator,
}
Expand description
An error which can be returned when validating CheckOptions
.
Variants§
MissingInitiator
The initiator field was not set.
Trait Implementations§
Source§impl Debug for CheckOptionsDecodeError
impl Debug for CheckOptionsDecodeError
Source§impl Display for CheckOptionsDecodeError
impl Display for CheckOptionsDecodeError
Source§impl Error for CheckOptionsDecodeError
impl Error for CheckOptionsDecodeError
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 PartialEq for CheckOptionsDecodeError
impl PartialEq for CheckOptionsDecodeError
impl Eq for CheckOptionsDecodeError
impl StructuralPartialEq for CheckOptionsDecodeError
Auto Trait Implementations§
impl Freeze for CheckOptionsDecodeError
impl RefUnwindSafe for CheckOptionsDecodeError
impl Send for CheckOptionsDecodeError
impl Sync for CheckOptionsDecodeError
impl Unpin for CheckOptionsDecodeError
impl UnwindSafe for CheckOptionsDecodeError
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