pub struct BatchOutDebug<'a> {
pub minimal: BatchOutMinimal<'a>,
pub state_fingerprint: &'a mut [u64],
pub events_fingerprint: &'a mut [u64],
pub mask_fingerprint: &'a mut [u64],
pub event_counts: &'a mut [u16],
pub event_codes: &'a mut [u32],
}Expand description
Debug batch output, filled in-place.
Fields§
§minimal: BatchOutMinimal<'a>Minimal outputs for the batch.
state_fingerprint: &'a mut [u64]State fingerprint per env.
events_fingerprint: &'a mut [u64]Event fingerprint per env.
mask_fingerprint: &'a mut [u64]Mask fingerprint per env.
event_counts: &'a mut [u16]Count of debug events per env.
event_codes: &'a mut [u32]Flattened debug event codes (len = num_envs * event_capacity).
Auto Trait Implementations§
impl<'a> Freeze for BatchOutDebug<'a>
impl<'a> RefUnwindSafe for BatchOutDebug<'a>
impl<'a> Send for BatchOutDebug<'a>
impl<'a> Sync for BatchOutDebug<'a>
impl<'a> Unpin for BatchOutDebug<'a>
impl<'a> !UnwindSafe for BatchOutDebug<'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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more