pub enum BondOrder {
Single,
Double,
Triple,
Quadruple,
Aromatic,
Fractional(FractionalBondOrder),
Unknown,
}Expand description
A lightweight bond order label.
Variants§
Single
Single bond order.
Double
Double bond order.
Triple
Triple bond order.
Quadruple
Quadruple bond order.
Aromatic
Aromatic bond order.
Fractional(FractionalBondOrder)
Rational fractional bond order.
Unknown
Unknown or intentionally unspecified bond order.
Trait Implementations§
Source§impl Ord for BondOrder
impl Ord for BondOrder
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for BondOrder
impl PartialOrd for BondOrder
impl Copy for BondOrder
impl Eq for BondOrder
impl StructuralPartialEq for BondOrder
Auto Trait Implementations§
impl Freeze for BondOrder
impl RefUnwindSafe for BondOrder
impl Send for BondOrder
impl Sync for BondOrder
impl Unpin for BondOrder
impl UnsafeUnpin for BondOrder
impl UnwindSafe for BondOrder
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