pub enum BlockStatus {
Next {
prev: Tip,
},
Fork {
prev: Tip,
head: Tip,
fork_point: Tip,
},
Reorg {
prev: Tip,
prev_head: Tip,
fork_point: Tip,
},
}Expand description
Status of an accepted block.
Variants§
Next
Block is the “next” block, updating the chain head.
Fork
Block does not update the chain head and is a fork.
Fields
Reorg
Block updates the chain head via a (potentially disruptive) “reorg”. Previous block was not our previous chain head.
Implementations§
Trait Implementations§
Source§impl Clone for BlockStatus
impl Clone for BlockStatus
Source§fn clone(&self) -> BlockStatus
fn clone(&self) -> BlockStatus
Returns a copy 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 BlockStatus
impl Debug for BlockStatus
Source§impl PartialEq for BlockStatus
impl PartialEq for BlockStatus
impl Copy for BlockStatus
impl StructuralPartialEq for BlockStatus
Auto Trait Implementations§
impl Freeze for BlockStatus
impl RefUnwindSafe for BlockStatus
impl Send for BlockStatus
impl Sync for BlockStatus
impl Unpin for BlockStatus
impl UnwindSafe for BlockStatus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)Source§impl<'a, T> DefaultFeatures<'a> for T
impl<'a, T> DefaultFeatures<'a> for T
Source§fn clone_boxed(&self) -> Box<dyn DefaultFeatures<'a>>
fn clone_boxed(&self) -> Box<dyn DefaultFeatures<'a>>
Clone this value, and then immediately put it into a
Box
behind a trait object of this trait.Source§impl<'a, T> NonSyncFeatures<'a> for Twhere
T: 'a + Clone,
impl<'a, T> NonSyncFeatures<'a> for Twhere
T: 'a + Clone,
Source§fn clone_boxed(&self) -> Box<dyn NonSyncFeatures<'a>>
fn clone_boxed(&self) -> Box<dyn NonSyncFeatures<'a>>
Clone this value, and then immediately put it into a
Box
behind a trait object of this trait.