pub struct FuzzReg(/* private fields */);
Expand description
A simple u8
register type for fuzzing only.
Trait Implementations§
Source§impl<'a> Arbitrary<'a> for FuzzReg
impl<'a> Arbitrary<'a> for FuzzReg
Source§fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self>
fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self>
Generate an arbitrary value of
Self
from the given unstructured data. Read more§fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self, Error>
fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self, Error>
Generate an arbitrary value of
Self
from the entirety of the given
unstructured data. Read moreimpl Copy for FuzzReg
Auto Trait Implementations§
impl Freeze for FuzzReg
impl RefUnwindSafe for FuzzReg
impl Send for FuzzReg
impl Sync for FuzzReg
impl Unpin for FuzzReg
impl UnwindSafe for FuzzReg
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