pub enum BetweenKind {
Symmetric,
Asymmetric,
}
Expand description
ASYMMETRIC is default. ASYMMETRIC is noise, it’s current behavior. If b <= c, then SYMMETRIC and ASYMMETRIC work the same way. If b > c, then SYMMETRIC in effect reverses the operands.
Variants§
Trait Implementations§
Source§impl Clone for BetweenKind
impl Clone for BetweenKind
Source§fn clone(&self) -> BetweenKind
fn clone(&self) -> BetweenKind
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 moreSource§impl PartialEq for BetweenKind
impl PartialEq for BetweenKind
impl StructuralPartialEq for BetweenKind
Auto Trait Implementations§
impl Freeze for BetweenKind
impl RefUnwindSafe for BetweenKind
impl Send for BetweenKind
impl Sync for BetweenKind
impl Unpin for BetweenKind
impl UnwindSafe for BetweenKind
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