pub enum FailedCheck {
Block(FailedBlockCheck),
Authorizer(FailedAuthorizerCheck),
}Expand description
check errors
Variants§
Block(FailedBlockCheck)
Authorizer(FailedAuthorizerCheck)
Trait Implementations§
Source§impl Clone for FailedCheck
impl Clone for FailedCheck
Source§fn clone(&self) -> FailedCheck
fn clone(&self) -> FailedCheck
Returns a duplicate of the value. Read more
1.0.0 · 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 FailedCheck
impl Debug for FailedCheck
Source§impl Display for FailedCheck
impl Display for FailedCheck
Source§impl Error for FailedCheck
impl Error for FailedCheck
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 FailedCheck
impl PartialEq for FailedCheck
impl Eq for FailedCheck
impl StructuralPartialEq for FailedCheck
Auto Trait Implementations§
impl Freeze for FailedCheck
impl RefUnwindSafe for FailedCheck
impl Send for FailedCheck
impl Sync for FailedCheck
impl Unpin for FailedCheck
impl UnwindSafe for FailedCheck
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