pub enum Compares {
Eq,
NotEq,
Lt,
LtE,
Gt,
GtE,
Is,
IsNot,
In,
NotIn,
Unknown,
}
Variants§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Compares
impl<'de> Deserialize<'de> for Compares
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<'a> FromPyObject<'a> for Compares
impl<'a> FromPyObject<'a> for Compares
impl StructuralPartialEq for Compares
Auto Trait Implementations§
impl Freeze for Compares
impl RefUnwindSafe for Compares
impl Send for Compares
impl Sync for Compares
impl Unpin for Compares
impl UnwindSafe for Compares
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