pub struct BondEntry {
pub atom1: AtomIdx,
pub atom2: AtomIdx,
pub order: BondOrder,
}Expand description
A single bond edge in the molecular graph.
The graph is undirected; atom1/atom2 ordering is not guaranteed.
Fields§
§atom1: AtomIdx§atom2: AtomIdx§order: BondOrderImplementations§
Trait Implementations§
impl Eq for BondEntry
impl StructuralPartialEq for BondEntry
Auto Trait Implementations§
impl Freeze for BondEntry
impl RefUnwindSafe for BondEntry
impl Send for BondEntry
impl Sync for BondEntry
impl Unpin for BondEntry
impl UnsafeUnpin for BondEntry
impl UnwindSafe for BondEntry
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more