pub enum BlockchainEvent {
BlockchainUpdatedWithHeaders(BlockchainUpdatedWithHeaders),
BlockchainUpdatedWithReorg(BlockchainUpdatedWithReorg),
}Variants§
BlockchainUpdatedWithHeaders(BlockchainUpdatedWithHeaders)
BlockchainUpdatedWithReorg(BlockchainUpdatedWithReorg)
Trait Implementations§
Source§impl Clone for BlockchainEvent
impl Clone for BlockchainEvent
Source§fn clone(&self) -> BlockchainEvent
fn clone(&self) -> BlockchainEvent
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 BlockchainEvent
impl Debug for BlockchainEvent
Source§impl PartialEq for BlockchainEvent
impl PartialEq for BlockchainEvent
Source§impl Serialize for BlockchainEvent
impl Serialize for BlockchainEvent
impl StructuralPartialEq for BlockchainEvent
Auto Trait Implementations§
impl Freeze for BlockchainEvent
impl RefUnwindSafe for BlockchainEvent
impl Send for BlockchainEvent
impl Sync for BlockchainEvent
impl Unpin for BlockchainEvent
impl UnwindSafe for BlockchainEvent
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