pub struct InputStorm {
pub events: Vec<Event>,
pub pattern_name: &'static str,
pub seed: u64,
}Expand description
Generated storm result with events and metadata.
Fields§
§events: Vec<Event>The generated events in order.
pattern_name: &'static strPattern name for logging.
seed: u64Seed used for generation.
Auto Trait Implementations§
impl Freeze for InputStorm
impl RefUnwindSafe for InputStorm
impl Send for InputStorm
impl Sync for InputStorm
impl Unpin for InputStorm
impl UnsafeUnpin for InputStorm
impl UnwindSafe for InputStorm
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