//! MODEL record structure and implementations
usesuper::{Atom, Remark};/// Represents a MODEL record from a PDB file.
////// Contains atoms and remarks specific to one model in a multi-model structure.
#[derive(Debug, Clone)]pubstructModel{/// Serial number of the model.
pubserial:i32,
/// List of atoms in the model.
pubatoms:Vec<Atom>,
/// List of remarks specific to this model.
pubremarks:Vec<Remark>,
}