pub enum SequencerOutcome {
Completed,
Slashed {
sequencer: Vec<u8>,
},
}Expand description
Result of applying a blob, from sequencer’s point of view.
Variants§
Completed
The blob was applied successfully and the operation is concluded.
Slashed
The blob was not applied successfully. The sequencer has been slashed as a result of the invalid blob.
Auto Trait Implementations§
impl RefUnwindSafe for SequencerOutcome
impl Send for SequencerOutcome
impl Sync for SequencerOutcome
impl Unpin for SequencerOutcome
impl UnwindSafe for SequencerOutcome
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