pub struct DevFaultReport {
pub items: Vec<StreamItem>,
pub diagnostics: Vec<Symbol>,
}Expand description
Result of replaying a development cassette with an injected fault.
Fields§
§items: Vec<StreamItem>Items left after the fault plan is applied.
diagnostics: Vec<Symbol>Diagnostics emitted by the fault replay.
Trait Implementations§
Source§impl Clone for DevFaultReport
impl Clone for DevFaultReport
Source§fn clone(&self) -> DevFaultReport
fn clone(&self) -> DevFaultReport
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 DevFaultReport
impl Debug for DevFaultReport
impl Eq for DevFaultReport
Source§impl PartialEq for DevFaultReport
impl PartialEq for DevFaultReport
Source§fn eq(&self, other: &DevFaultReport) -> bool
fn eq(&self, other: &DevFaultReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DevFaultReport
Auto Trait Implementations§
impl Freeze for DevFaultReport
impl RefUnwindSafe for DevFaultReport
impl Send for DevFaultReport
impl Sync for DevFaultReport
impl Unpin for DevFaultReport
impl UnsafeUnpin for DevFaultReport
impl UnwindSafe for DevFaultReport
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