pub struct DebugRunReport {
pub fidelity: &'static str,
pub mode: &'static str,
pub note: &'static str,
pub run: Option<RunReport>,
pub sanitize: SanitizeReport,
pub stop: Option<DebugStop>,
pub trace_events: usize,
}Fields§
§fidelity: &'static str§mode: &'static str§note: &'static str§run: Option<RunReport>§sanitize: SanitizeReport§stop: Option<DebugStop>§trace_events: usizeTrait Implementations§
Source§impl Clone for DebugRunReport
impl Clone for DebugRunReport
Source§fn clone(&self) -> DebugRunReport
fn clone(&self) -> DebugRunReport
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 moreSource§impl Debug for DebugRunReport
impl Debug for DebugRunReport
impl Eq for DebugRunReport
Source§impl PartialEq for DebugRunReport
impl PartialEq for DebugRunReport
Source§impl Serialize for DebugRunReport
impl Serialize for DebugRunReport
impl StructuralPartialEq for DebugRunReport
Auto Trait Implementations§
impl Freeze for DebugRunReport
impl RefUnwindSafe for DebugRunReport
impl Send for DebugRunReport
impl Sync for DebugRunReport
impl Unpin for DebugRunReport
impl UnsafeUnpin for DebugRunReport
impl UnwindSafe for DebugRunReport
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