chemcore 0.4.1

A cheminformatics toolkit.
Documentation
1
2
3
4
5
6
7
use super::{ Atom, Bond };

#[derive(Debug,PartialEq)]
pub struct Node {
    pub atom: Atom,
    pub bonds: Vec<Bond>
}