pub enum TestCompare {
Eq,
NotEq,
Less,
LessEq,
More,
MoreEq,
Contains,
NotContains,
}Variants§
Trait Implementations§
Source§impl Clone for TestCompare
impl Clone for TestCompare
Source§fn clone(&self) -> TestCompare
fn clone(&self) -> TestCompare
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 moreimpl Copy for TestCompare
Source§impl Debug for TestCompare
impl Debug for TestCompare
Source§impl Default for TestCompare
impl Default for TestCompare
impl Eq for TestCompare
Source§impl FromStr for TestCompare
impl FromStr for TestCompare
Source§impl PartialEq for TestCompare
impl PartialEq for TestCompare
Source§fn eq(&self, other: &TestCompare) -> bool
fn eq(&self, other: &TestCompare) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TestCompare
Auto Trait Implementations§
impl Freeze for TestCompare
impl RefUnwindSafe for TestCompare
impl Send for TestCompare
impl Sync for TestCompare
impl Unpin for TestCompare
impl UnsafeUnpin for TestCompare
impl UnwindSafe for TestCompare
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