pub struct BlockchainUpdatedWithReorg {
pub headers_to_rollback: Vec<BlockHeader>,
pub headers_to_apply: Vec<BlockHeader>,
pub confirmed_headers: Vec<BlockHeader>,
}Fields§
§headers_to_rollback: Vec<BlockHeader>§headers_to_apply: Vec<BlockHeader>§confirmed_headers: Vec<BlockHeader>Trait Implementations§
source§impl Clone for BlockchainUpdatedWithReorg
impl Clone for BlockchainUpdatedWithReorg
source§fn clone(&self) -> BlockchainUpdatedWithReorg
fn clone(&self) -> BlockchainUpdatedWithReorg
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 BlockchainUpdatedWithReorg
impl Debug for BlockchainUpdatedWithReorg
source§impl PartialEq for BlockchainUpdatedWithReorg
impl PartialEq for BlockchainUpdatedWithReorg
source§fn eq(&self, other: &BlockchainUpdatedWithReorg) -> bool
fn eq(&self, other: &BlockchainUpdatedWithReorg) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BlockchainUpdatedWithReorg
Auto Trait Implementations§
impl RefUnwindSafe for BlockchainUpdatedWithReorg
impl Send for BlockchainUpdatedWithReorg
impl Sync for BlockchainUpdatedWithReorg
impl Unpin for BlockchainUpdatedWithReorg
impl UnwindSafe for BlockchainUpdatedWithReorg
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