pub struct FixedInput<'a> {
pub fixed_input: &'a [u8],
pub counter_location: CounterLocation,
}
Expand description
Fixed input used when implementation is under test
Fields§
§fixed_input: &'a [u8]
The fixed input
counter_location: CounterLocation
The location of the counter
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for FixedInput<'a>
impl<'a> RefUnwindSafe for FixedInput<'a>
impl<'a> Send for FixedInput<'a>
impl<'a> Sync for FixedInput<'a>
impl<'a> Unpin for FixedInput<'a>
impl<'a> UnwindSafe for FixedInput<'a>
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