pub trait SolomonProblem {
    // Required method
    fn read_solomon(self, is_rounded: bool) -> Result<Problem, GenericError>;
}
Expand description

A trait read write solomon problem.

Required Methods§

source

fn read_solomon(self, is_rounded: bool) -> Result<Problem, GenericError>

Reads solomon problem.

Implementations on Foreign Types§

source§

impl SolomonProblem for String

source§

fn read_solomon(self, is_rounded: bool) -> Result<Problem, GenericError>

source§

impl<R: Read> SolomonProblem for BufReader<R>

source§

fn read_solomon(self, is_rounded: bool) -> Result<Problem, GenericError>

Implementors§