[][src]Struct solana_ledger::blockstore_meta::ErasureMeta

pub struct ErasureMeta {
    pub set_index: u64,
    pub first_coding_index: u64,
    pub size: usize,
    pub config: ErasureConfig,
}

Erasure coding information

Fields

set_index: u64

Which erasure set in the slot this is

first_coding_index: u64

First coding index in the FEC set

size: usize

Size of shards in this erasure set

config: ErasureConfig

Erasure configuration for this erasure set

Methods

impl ErasureMeta[src]

pub fn new(
    set_index: u64,
    first_coding_index: u64,
    config: &ErasureConfig
) -> ErasureMeta
[src]

pub fn status(&self, index: &Index) -> ErasureMetaStatus[src]

pub fn set_size(&mut self, size: usize)[src]

pub fn size(&self) -> usize[src]

Trait Implementations

impl Clone for ErasureMeta[src]

impl Copy for ErasureMeta[src]

impl Debug for ErasureMeta[src]

impl Default for ErasureMeta[src]

impl<'de> Deserialize<'de> for ErasureMeta[src]

impl Eq for ErasureMeta[src]

impl PartialEq<ErasureMeta> for ErasureMeta[src]

impl Serialize for ErasureMeta[src]

impl StructuralEq for ErasureMeta[src]

impl StructuralPartialEq for ErasureMeta[src]

Auto Trait Implementations

Blanket Implementations

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> Clear for T where
    T: InitializableFromZeroed + ?Sized

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<T> InitializableFromZeroed for T where
    T: Default

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,