Enum BondStrength
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§
§impl Clone for BondStrength
impl Clone for BondStrength
§fn clone(&self) -> BondStrength
fn clone(&self) -> BondStrength
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl Debug for BondStrength
impl Debug for BondStrength
§impl Display for BondStrength
impl Display for BondStrength
§impl Hash for BondStrength
impl Hash for BondStrength
§impl Ord for BondStrength
impl Ord for BondStrength
§impl PartialEq for BondStrength
impl PartialEq for BondStrength
§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