pub struct ForkProgress {
pub is_dead: bool,
pub fork_stats: ForkStats,
pub propagated_stats: PropagatedStats,
pub replay_stats: Arc<RwLock<ReplaySlotStats>>,
pub replay_progress: Arc<RwLock<ConfirmationProgress>>,
pub retransmit_info: RetransmitInfo,
pub num_blocks_on_fork: u64,
pub num_dropped_blocks_on_fork: u64,
}Fields§
§is_dead: bool§fork_stats: ForkStats§propagated_stats: PropagatedStats§replay_stats: Arc<RwLock<ReplaySlotStats>>§replay_progress: Arc<RwLock<ConfirmationProgress>>§retransmit_info: RetransmitInfo§num_blocks_on_fork: u64§num_dropped_blocks_on_fork: u64Implementations§
Source§impl ForkProgress
impl ForkProgress
pub fn new( last_entry: Hash, prev_leader_slot: Option<Slot>, validator_stake_info: Option<ValidatorStakeInfo>, num_blocks_on_fork: u64, num_dropped_blocks_on_fork: u64, ) -> Self
pub fn new_from_bank( bank: &Bank, validator_identity: &Pubkey, validator_vote_pubkey: &Pubkey, prev_leader_slot: Option<Slot>, num_blocks_on_fork: u64, num_dropped_blocks_on_fork: u64, ) -> Self
Auto Trait Implementations§
impl Freeze for ForkProgress
impl RefUnwindSafe for ForkProgress
impl Send for ForkProgress
impl Sync for ForkProgress
impl Unpin for ForkProgress
impl UnwindSafe for ForkProgress
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request