pub enum BinaryFieldOp {
Add,
Sub,
Mul,
Div,
IntegerDiv,
Equals,
LessThan,
LessThanEquals,
}
Expand description
Binary fixed-length field expressions
Variants§
Add
Sub
Mul
Div
Field division
IntegerDiv
Integer division
Equals
(==) equal
LessThan
(<) Field less than
LessThanEquals
(<=) field less or equal
Trait Implementations§
Source§impl Clone for BinaryFieldOp
impl Clone for BinaryFieldOp
Source§fn clone(&self) -> BinaryFieldOp
fn clone(&self) -> BinaryFieldOp
Returns a copy 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 BinaryFieldOp
impl Debug for BinaryFieldOp
Source§impl<'de> Deserialize<'de> for BinaryFieldOp
impl<'de> Deserialize<'de> for BinaryFieldOp
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 Hash for BinaryFieldOp
impl Hash for BinaryFieldOp
Source§impl PartialEq for BinaryFieldOp
impl PartialEq for BinaryFieldOp
Source§impl Serialize for BinaryFieldOp
impl Serialize for BinaryFieldOp
impl Copy for BinaryFieldOp
impl Eq for BinaryFieldOp
impl StructuralPartialEq for BinaryFieldOp
Auto Trait Implementations§
impl Freeze for BinaryFieldOp
impl RefUnwindSafe for BinaryFieldOp
impl Send for BinaryFieldOp
impl Sync for BinaryFieldOp
impl Unpin for BinaryFieldOp
impl UnwindSafe for BinaryFieldOp
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
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