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