pub enum ReactionDirection {
Forward,
Reverse,
Reversible,
Equilibrium,
}Expand description
A lightweight reaction direction label.
Variants§
Forward
Forward direction.
Reverse
Reverse direction.
Reversible
Reversible direction.
Equilibrium
Equilibrium direction.
Trait Implementations§
Source§impl Clone for ReactionDirection
impl Clone for ReactionDirection
Source§fn clone(&self) -> ReactionDirection
fn clone(&self) -> ReactionDirection
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 ReactionDirection
impl Debug for ReactionDirection
Source§impl Display for ReactionDirection
impl Display for ReactionDirection
Source§impl Hash for ReactionDirection
impl Hash for ReactionDirection
Source§impl Ord for ReactionDirection
impl Ord for ReactionDirection
Source§fn cmp(&self, other: &ReactionDirection) -> Ordering
fn cmp(&self, other: &ReactionDirection) -> 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 ReactionDirection
impl PartialEq for ReactionDirection
Source§fn eq(&self, other: &ReactionDirection) -> bool
fn eq(&self, other: &ReactionDirection) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ReactionDirection
impl PartialOrd for ReactionDirection
impl Copy for ReactionDirection
impl Eq for ReactionDirection
impl StructuralPartialEq for ReactionDirection
Auto Trait Implementations§
impl Freeze for ReactionDirection
impl RefUnwindSafe for ReactionDirection
impl Send for ReactionDirection
impl Sync for ReactionDirection
impl Unpin for ReactionDirection
impl UnsafeUnpin for ReactionDirection
impl UnwindSafe for ReactionDirection
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