pub struct CompareOp(/* private fields */);Expand description
Implementations§
Source§impl CompareOp
impl CompareOp
pub const NEVER: CompareOp
pub const LESS: CompareOp
pub const EQUAL: CompareOp
pub const LESS_OR_EQUAL: CompareOp
pub const GREATER: CompareOp
pub const NOT_EQUAL: CompareOp
pub const GREATER_OR_EQUAL: CompareOp
pub const ALWAYS: CompareOp
pub const fn from_raw(value: i32) -> CompareOp
pub const fn as_raw(self) -> i32
Trait Implementations§
Source§impl Error for CompareOp
impl Error for CompareOp
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl Ord for CompareOp
impl Ord for CompareOp
Source§impl PartialOrd for CompareOp
impl PartialOrd for CompareOp
impl Copy for CompareOp
impl Eq for CompareOp
impl StructuralPartialEq for CompareOp
Auto Trait Implementations§
impl Freeze for CompareOp
impl RefUnwindSafe for CompareOp
impl Send for CompareOp
impl Sync for CompareOp
impl Unpin for CompareOp
impl UnsafeUnpin for CompareOp
impl UnwindSafe for CompareOp
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