pub struct StepReport {
pub step: String,
pub events_before: usize,
pub events_after: usize,
pub objects_before: usize,
pub objects_after: usize,
}Expand description
Effect of one step, for honest reporting in CLIs and UIs.
Fields§
§step: String§events_before: usize§events_after: usize§objects_before: usize§objects_after: usizeTrait Implementations§
Source§impl Clone for StepReport
impl Clone for StepReport
Source§fn clone(&self) -> StepReport
fn clone(&self) -> StepReport
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 StepReport
impl Debug for StepReport
Auto Trait Implementations§
impl Freeze for StepReport
impl RefUnwindSafe for StepReport
impl Send for StepReport
impl Sync for StepReport
impl Unpin for StepReport
impl UnsafeUnpin for StepReport
impl UnwindSafe for StepReport
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