Trait rc5_cipher::unsigned::Unsigned
source · pub trait Unsigned: Unsigned + WrappingAdd + WrappingSub + WrappingShl + WrappingShr + BitAnd<Output = Self> + BitOr<Output = Self> + BitXor<Output = Self> + Shl<Output = Self> + Shr<Output = Self> + From<u8> + Copy {
type Array;
const BITS: Self;
const BITSU32: u32;
const BYTES: usize;
const P: Self;
const Q: Self;
// Required methods
fn from_le_bytes(bytes: Self::Array) -> Self;
fn to_le_bytes(a: Self) -> Vec<u8>;
}