pub struct LookAheadSummary {
pub total_accesses: usize,
pub violations: usize,
pub violation_details: Vec<DataAccess>,
}Expand description
Summary of look-ahead violations
Fields§
§total_accesses: usize§violations: usize§violation_details: Vec<DataAccess>Implementations§
Source§impl LookAheadSummary
impl LookAheadSummary
pub fn print_report(&self)
Trait Implementations§
Source§impl Clone for LookAheadSummary
impl Clone for LookAheadSummary
Source§fn clone(&self) -> LookAheadSummary
fn clone(&self) -> LookAheadSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for LookAheadSummary
impl RefUnwindSafe for LookAheadSummary
impl Send for LookAheadSummary
impl Sync for LookAheadSummary
impl Unpin for LookAheadSummary
impl UnsafeUnpin for LookAheadSummary
impl UnwindSafe for LookAheadSummary
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