pub enum ValidateOutcome {
Valid(ValidOutcome),
Invalid(InvalidOutcome),
}
Expand description
Result of validating a block.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ValidateOutcome
impl !RefUnwindSafe for ValidateOutcome
impl Send for ValidateOutcome
impl Sync for ValidateOutcome
impl Unpin for ValidateOutcome
impl !UnwindSafe for ValidateOutcome
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