pub trait LaneSize: Copy + Clone + Debug + Default + PartialEq + BitAndAssign + BitAnd<Output = Self> + BitXorAssign + BitXor<Output = Self> + Not<Output = Self> {
    const KECCAK_F_ROUND_COUNT: usize;

    fn truncate_rc(rc: u64) -> Self;
    fn rotate_left(self, n: u32) -> Self;
}

Required Associated Constants

Required Methods

Implementations on Foreign Types

Implementors