Trait Absorb

Source
pub trait Absorb<O> {
    // Required method
    fn absorb(&mut self, operation: O);
}
Expand description

Should be implemented on structs that want to be shared with this library

Required Methods§

Source

fn absorb(&mut self, operation: O)

has to be deterministic. Operations will be applied in the same order to both buffers

Implementors§