pub trait Cruncher {
    fn crunch(&self, raw: &[u8]) -> Result<Vec<u8>, AssemblerError>;
}

Required Methods

Crunch the raw data with the dedicated algorithm. Fail when there is no data to crunch

Implementors