purr 0.9.0

Primitives for reading and writing the SMILES language in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
/// An error resulting from depth-first traversal of a graph
/// representation.
#[derive(Debug,PartialEq)]
pub enum Error {
    HalfBond(usize, usize),
    DuplicateBond(usize, usize),
    UnknownTarget(usize, usize),
    IncompatibleBond(usize, usize),
    Loop(usize)
}