yowl 0.1.0

Primitives for reading and writing the SMILES language
Documentation
1
2
3
4
5
6
7
8
9
use thiserror::Error;

#[derive(Debug, PartialEq, Eq, Error)]
pub enum Error {
    #[error("join error")]
    Join(usize, usize),
    #[error("rnum error")]
    Rnum(usize),
}