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::Bridge;

use super::Atom;

#[derive(Debug, PartialEq, Clone)]
pub enum Target {
    Atom(Atom),
    Bridge(Bridge),
}