pub(super) trait Word:
'static
+ Sized
+ Copy
+ Add<Output = Self>
+ AddAssign
+ BitAnd<Output = Self>
+ BitOr<Output = Self>
+ Not<Output = Self> {
type InputBytes: Copy;
const ZERO: Self;
// Required methods
fn from_be_bytes(input: Self::InputBytes) -> Self;
fn rotr(self, count: u32) -> Self;
}
Required Associated Types§
type InputBytes: Copy
Required Associated Constants§
Required Methods§
fn from_be_bytes(input: Self::InputBytes) -> Self
fn rotr(self, count: u32) -> Self
Object Safety§
This trait is not object safe.