pdbrust 0.7.0

A comprehensive Rust library for parsing and analyzing Protein Data Bank (PDB) files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! REMARK record structure and implementations

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