balsa 0.3.2

Reference implementation for the Balsa molecular line notation.
Documentation
1
2
3
4
5
6
7
8
9
use crate::feature::BondKind;

use super::Target;

#[derive(Debug, PartialEq, Clone)]
pub struct Bond {
    pub kind: BondKind,
    pub target: Target,
}