Struct cfx_rpc_eth_types::SyncInfo
source · pub struct SyncInfo {
pub starting_block: U256,
pub current_block: U256,
pub highest_block: U256,
pub warp_chunks_amount: Option<U256>,
pub warp_chunks_processed: Option<U256>,
}
Expand description
Sync info
Fields§
§starting_block: U256
Starting block
current_block: U256
Current block
highest_block: U256
Highest block seen so far
warp_chunks_amount: Option<U256>
Warp sync snapshot chunks total.
warp_chunks_processed: Option<U256>
Warp sync snpashot chunks processed.
Trait Implementations§
source§impl PartialEq for SyncInfo
impl PartialEq for SyncInfo
impl StructuralPartialEq for SyncInfo
Auto Trait Implementations§
impl RefUnwindSafe for SyncInfo
impl Send for SyncInfo
impl Sync for SyncInfo
impl Unpin for SyncInfo
impl UnwindSafe for SyncInfo
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