pub struct StandardizationStepReport {
pub step: StandardizationStep,
pub enabled: bool,
pub changed: bool,
pub before: MoleculeSnapshot,
pub after: MoleculeSnapshot,
}Expand description
Per-stage audit entry for a standardization run.
Fields§
§step: StandardizationStepPipeline stage.
enabled: boolWhether the stage was enabled in the config.
changed: boolWhether the stage changed the molecule hash.
before: MoleculeSnapshotMolecule summary before the stage.
after: MoleculeSnapshotMolecule summary after the stage.
Trait Implementations§
Source§impl Clone for StandardizationStepReport
impl Clone for StandardizationStepReport
Source§fn clone(&self) -> StandardizationStepReport
fn clone(&self) -> StandardizationStepReport
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 StandardizationStepReport
impl Debug for StandardizationStepReport
impl Eq for StandardizationStepReport
impl StructuralPartialEq for StandardizationStepReport
Auto Trait Implementations§
impl Freeze for StandardizationStepReport
impl RefUnwindSafe for StandardizationStepReport
impl Send for StandardizationStepReport
impl Sync for StandardizationStepReport
impl Unpin for StandardizationStepReport
impl UnsafeUnpin for StandardizationStepReport
impl UnwindSafe for StandardizationStepReport
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