pub struct ValidationReport {
pub expected_atoms: usize,
pub actual_atoms: usize,
pub expected_molecules: usize,
pub atom_count_ok: bool,
pub molecule_count_ok: bool,
pub distance_ok: bool,
pub constraints_ok: bool,
pub metrics: ViolationMetrics,
}Expand description
Validation report for a packing run.
Fields§
§expected_atoms: usize§actual_atoms: usize§expected_molecules: usize§atom_count_ok: boolAtom count exactly matches expanded target specification.
molecule_count_ok: boolMolecule count exactly matches expanded target specification.
distance_ok: boolDistance violations satisfy precision threshold.
constraints_ok: boolConstraint violations satisfy precision threshold.
metrics: ViolationMetricsDetailed metrics.
Implementations§
Trait Implementations§
Source§impl Clone for ValidationReport
impl Clone for ValidationReport
Source§fn clone(&self) -> ValidationReport
fn clone(&self) -> ValidationReport
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 ValidationReport
impl RefUnwindSafe for ValidationReport
impl Send for ValidationReport
impl Sync for ValidationReport
impl Unpin for ValidationReport
impl UnsafeUnpin for ValidationReport
impl UnwindSafe for ValidationReport
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