#[repr(u8)]pub enum FReg {
Show 32 variants
f0 = 0,
f1 = 1,
f2 = 2,
f3 = 3,
f4 = 4,
f5 = 5,
f6 = 6,
f7 = 7,
f8 = 8,
f9 = 9,
f10 = 10,
f11 = 11,
f12 = 12,
f13 = 13,
f14 = 14,
f15 = 15,
f16 = 16,
f17 = 17,
f18 = 18,
f19 = 19,
f20 = 20,
f21 = 21,
f22 = 22,
f23 = 23,
f24 = 24,
f25 = 25,
f26 = 26,
f27 = 27,
f28 = 28,
f29 = 29,
f30 = 30,
f31 = 31,
}
Expand description
An f
register: floats.
Variants§
f0 = 0
f1 = 1
f2 = 2
f3 = 3
f4 = 4
f5 = 5
f6 = 6
f7 = 7
f8 = 8
f9 = 9
f10 = 10
f11 = 11
f12 = 12
f13 = 13
f14 = 14
f15 = 15
f16 = 16
f17 = 17
f18 = 18
f19 = 19
f20 = 20
f21 = 21
f22 = 22
f23 = 23
f24 = 24
f25 = 25
f26 = 26
f27 = 27
f28 = 28
f29 = 29
f30 = 30
f31 = 31
Trait Implementations§
Source§impl<'arbitrary> Arbitrary<'arbitrary> for FReg
impl<'arbitrary> Arbitrary<'arbitrary> for FReg
Source§fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of
Self
from the given unstructured data. Read moreSource§fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of
Self
from the entirety of the given
unstructured data. Read moreSource§fn size_hint(depth: usize) -> (usize, Option<usize>)
fn size_hint(depth: usize) -> (usize, Option<usize>)
Get a size hint for how many bytes out of an
Unstructured
this type
needs to construct itself. Read moreSource§fn try_size_hint(
depth: usize,
) -> Result<(usize, Option<usize>), MaxRecursionReached>
fn try_size_hint( depth: usize, ) -> Result<(usize, Option<usize>), MaxRecursionReached>
Get a size hint for how many bytes out of an
Unstructured
this type
needs to construct itself. Read moreSource§impl Index<FReg> for MachineState
Available on crate feature interp
only.
impl Index<FReg> for MachineState
Available on crate feature
interp
only.Source§impl IndexMut<FReg> for MachineState
Available on crate feature interp
only.
impl IndexMut<FReg> for MachineState
Available on crate feature
interp
only.Source§impl Ord for FReg
impl Ord for FReg
Source§impl PartialOrd for FReg
impl PartialOrd for FReg
Source§impl Reg for FReg
impl Reg for FReg
impl Copy for FReg
impl Eq for FReg
impl StructuralPartialEq for FReg
Auto Trait Implementations§
impl Freeze for FReg
impl RefUnwindSafe for FReg
impl Send for FReg
impl Sync for FReg
impl Unpin for FReg
impl UnwindSafe for FReg
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