pub struct PyComparisonOp(/* private fields */);Implementations§
Source§impl PyComparisonOp
impl PyComparisonOp
pub fn eq_only( self, f: impl FnOnce() -> PyResult<PyComparisonValue>, ) -> PyResult<PyComparisonValue>
pub fn eval_ord(self, ord: Ordering) -> bool
pub fn swapped(self) -> Self
pub fn method_name(self, ctx: &Context) -> &'static PyStrInterned
pub fn operator_token(self) -> &'static str
Trait Implementations§
Source§impl Clone for PyComparisonOp
impl Clone for PyComparisonOp
Source§fn clone(&self) -> PyComparisonOp
fn clone(&self) -> PyComparisonOp
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 Debug for PyComparisonOp
impl Debug for PyComparisonOp
Source§impl From<ComparisonOperator> for PyComparisonOp
impl From<ComparisonOperator> for PyComparisonOp
Source§fn from(op: ComparisonOperator) -> Self
fn from(op: ComparisonOperator) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PyComparisonOp
impl PartialEq for PyComparisonOp
impl Copy for PyComparisonOp
impl Eq for PyComparisonOp
impl StructuralPartialEq for PyComparisonOp
Auto Trait Implementations§
impl Freeze for PyComparisonOp
impl RefUnwindSafe for PyComparisonOp
impl Send for PyComparisonOp
impl Sync for PyComparisonOp
impl Unpin for PyComparisonOp
impl UnwindSafe for PyComparisonOp
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more