pub enum ExpOrdering {
GT,
LT,
UNKNOWN,
}Variants§
Trait Implementations§
Source§impl Clone for ExpOrdering
impl Clone for ExpOrdering
Source§fn clone(&self) -> ExpOrdering
fn clone(&self) -> ExpOrdering
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 ExpOrdering
impl Debug for ExpOrdering
Source§impl From<&str> for ExpOrdering
impl From<&str> for ExpOrdering
Source§impl PartialEq for ExpOrdering
impl PartialEq for ExpOrdering
Source§fn eq(&self, other: &ExpOrdering) -> bool
fn eq(&self, other: &ExpOrdering) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExpOrdering
Auto Trait Implementations§
impl Freeze for ExpOrdering
impl RefUnwindSafe for ExpOrdering
impl Send for ExpOrdering
impl Sync for ExpOrdering
impl Unpin for ExpOrdering
impl UnsafeUnpin for ExpOrdering
impl UnwindSafe for ExpOrdering
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