lib3dmol/structures/
mod.rs

1pub mod atom;
2pub mod chain;
3pub mod residue;
4mod selection_atom;
5pub mod structure;
6
7pub trait GetAtom {
8    fn get_atom(&self) -> Vec<&atom::Atom>;
9    fn compute_weight(&self) -> f32;
10}
11
12pub use atom::Atom;
13pub use chain::Chain;
14pub use residue::Residue;
15pub use structure::Structure;