pub trait HasherPadOps: BytePad {
    // Required method
    fn size_mod_pad(&self) -> usize;

    // Provided method
    fn zeros_pad(&self) -> usize { ... }
}

Required Methods§

Provided Methods§

source

fn zeros_pad(&self) -> usize

Implementors§

source§

impl<S, const LEN: usize, const DELIMITER: u8> HasherPadOps for GenericPad<S, LEN, DELIMITER>where S: Add<usize, Output = usize> + AddAssign<usize> + BitAnd<Output = usize> + Clone + Copy + From<usize> + Rem<Output = usize>,