#[repr(u8)]pub enum RegR {
R128 = 0,
R160 = 1,
R256 = 2,
R512 = 3,
R1024 = 4,
R2048 = 5,
R4096 = 6,
R8192 = 7,
}Expand description
Enumeration of the r set of registers (non-arithmetic registers, mostly
used for cryptography)
Variants§
R128 = 0
128-bit non-arithmetics register
R160 = 1
160-bit non-arithmetics register
R256 = 2
256-bit non-arithmetics register
R512 = 3
512-bit non-arithmetics register
R1024 = 4
1024-bit non-arithmetics register
R2048 = 5
2048-bit non-arithmetics register
R4096 = 6
4096-bit non-arithmetics register
R8192 = 7
8192-bit non-arithmetics register
Implementations§
Trait Implementations§
Source§impl Ord for RegR
impl Ord for RegR
Source§impl PartialOrd for RegR
impl PartialOrd for RegR
impl Copy for RegR
impl Eq for RegR
impl StructuralPartialEq for RegR
Auto Trait Implementations§
impl Freeze for RegR
impl RefUnwindSafe for RegR
impl Send for RegR
impl Sync for RegR
impl Unpin for RegR
impl UnwindSafe for RegR
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more