pub struct MolGraph {
pub atoms: Vec<Atom>,
pub bonds: Vec<Vec<Bond>>,
}Expand description
Molecular graph: atoms with adjacency lists.
Fields§
§atoms: Vec<Atom>§bonds: Vec<Vec<Bond>>Trait Implementations§
Auto Trait Implementations§
impl Freeze for MolGraph
impl RefUnwindSafe for MolGraph
impl Send for MolGraph
impl Sync for MolGraph
impl Unpin for MolGraph
impl UnsafeUnpin for MolGraph
impl UnwindSafe for MolGraph
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