pub struct FuzzRegs;
Expand description
Fuzz-specific registers.
For the fuzzer, we do not need any fancy register types; see FuzzReg
.
Trait Implementations§
Source§impl<'arbitrary> Arbitrary<'arbitrary> for FuzzRegs
impl<'arbitrary> Arbitrary<'arbitrary> for FuzzRegs
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 moreAuto Trait Implementations§
impl Freeze for FuzzRegs
impl RefUnwindSafe for FuzzRegs
impl Send for FuzzRegs
impl Sync for FuzzRegs
impl Unpin for FuzzRegs
impl UnwindSafe for FuzzRegs
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