pub enum BlockStreamItem {
NewBlock(Arc<Block>),
Reorg(Vec<Arc<Block>>),
}Variants§
Trait Implementations§
source§impl Clone for BlockStreamItem
impl Clone for BlockStreamItem
source§fn clone(&self) -> BlockStreamItem
fn clone(&self) -> BlockStreamItem
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 moreAuto Trait Implementations§
impl RefUnwindSafe for BlockStreamItem
impl Send for BlockStreamItem
impl Sync for BlockStreamItem
impl Unpin for BlockStreamItem
impl UnwindSafe for BlockStreamItem
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