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, }