[][src]Struct solana_core::repair_weight::RepairWeight

pub struct RepairWeight { /* fields omitted */ }

Implementations

impl RepairWeight[src]

pub fn new(root: Slot) -> Self[src]

pub fn add_votes<I>(
    &mut self,
    blockstore: &Blockstore,
    votes: I,
    epoch_stakes: &HashMap<Epoch, EpochStakes>,
    epoch_schedule: &EpochSchedule
) where
    I: Iterator<Item = (Slot, Vec<Pubkey>)>, 
[src]

pub fn get_best_weighted_repairs(
    &mut self,
    blockstore: &Blockstore,
    epoch_stakes: &HashMap<Epoch, EpochStakes>,
    epoch_schedule: &EpochSchedule,
    max_new_orphans: usize,
    max_new_shreds: usize,
    ignore_slots: &dyn Contains<Slot>,
    repair_timing: Option<&mut RepairTiming>
) -> Vec<RepairType>
[src]

pub fn set_root(&mut self, new_root: Slot)[src]

Auto Trait Implementations

Blanket Implementations

impl<T> AbiExample for T[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]