pub struct RoundProfile {
pub bit_flips: Vec<BitFlip>,
pub pattern: DataPattern,
}Expand description
Profiling results from a series of hammering rounds.
Contains the bit flips that were consistently reproduced during profiling and the data pattern used to induce them.
Fields§
§bit_flips: Vec<BitFlip>Bit flips that met the reproducibility threshold
pattern: DataPatternData pattern used during profiling
Trait Implementations§
Source§impl Clone for RoundProfile
impl Clone for RoundProfile
Source§fn clone(&self) -> RoundProfile
fn clone(&self) -> RoundProfile
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RoundProfile
impl Debug for RoundProfile
Auto Trait Implementations§
impl Freeze for RoundProfile
impl RefUnwindSafe for RoundProfile
impl !Send for RoundProfile
impl !Sync for RoundProfile
impl Unpin for RoundProfile
impl UnwindSafe for RoundProfile
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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