//! REMARK record structure and implementations
/// Represents a REMARK record from a PDB file.
////// Contains additional information about the structure.
#[derive(Debug, Clone)]pubstructRemark{/// Remark number identifying the type of information.
pubnumber:i32,
/// Content of the remark.
pubcontent: String,
}