pub enum BondStrength {
Weak,
Moderate,
Strong,
VeryStrong,
Unknown,
}Expand description
A lightweight bond strength label.
Variants§
Weak
Weak bond or interaction.
Moderate
Moderate bond or interaction.
Strong
Strong bond or interaction.
VeryStrong
Very strong bond or interaction.
Unknown
Unknown or intentionally unspecified bond strength.
Trait Implementations§
Source§impl Clone for BondStrength
impl Clone for BondStrength
Source§fn clone(&self) -> BondStrength
fn clone(&self) -> BondStrength
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BondStrength
impl Debug for BondStrength
Source§impl Display for BondStrength
impl Display for BondStrength
Source§impl Hash for BondStrength
impl Hash for BondStrength
Source§impl Ord for BondStrength
impl Ord for BondStrength
Source§fn cmp(&self, other: &BondStrength) -> Ordering
fn cmp(&self, other: &BondStrength) -> Ordering
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 PartialEq for BondStrength
impl PartialEq for BondStrength
Source§fn eq(&self, other: &BondStrength) -> bool
fn eq(&self, other: &BondStrength) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for BondStrength
impl PartialOrd for BondStrength
impl Copy for BondStrength
impl Eq for BondStrength
impl StructuralPartialEq for BondStrength
Auto Trait Implementations§
impl Freeze for BondStrength
impl RefUnwindSafe for BondStrength
impl Send for BondStrength
impl Sync for BondStrength
impl Unpin for BondStrength
impl UnsafeUnpin for BondStrength
impl UnwindSafe for BondStrength
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