pub trait AlgorithmTrait: AlgorithmTraitConst {
    fn as_raw_mut_Algorithm(&mut self) -> *mut c_void;

    fn clear(&mut self) -> Result<()> { ... }
    fn read(&mut self, fn_: &FileNode) -> Result<()> { ... }
}

Required Methods§

Provided Methods§

Clears the algorithm state

Reads algorithm parameters from a file storage

Implementors§