Skip to main content

RepairSymbolGenerator

Trait RepairSymbolGenerator 

Source
pub trait RepairSymbolGenerator: Send + Sync {
    // Required method
    fn generate_repair_symbols(
        &self,
        commit_seq: u64,
        systematic_symbols: &[u8],
    ) -> Result<Vec<u8>>;
}
Expand description

Generator for repair symbols from committed systematic symbols.

Required Methods§

Source

fn generate_repair_symbols( &self, commit_seq: u64, systematic_symbols: &[u8], ) -> Result<Vec<u8>>

Implementors§