pub enum FilterEntity {
Equals(Box<FilterEntity>, Box<FilterEntity>),
GreaterThan(Box<FilterEntity>, Box<FilterEntity>),
LessThan(Box<FilterEntity>, Box<FilterEntity>),
FuzzyMatch(Box<FilterEntity>, Box<FilterEntity>, u8),
Not(Box<FilterEntity>),
And(Box<FilterEntity>, Box<FilterEntity>),
Or(Box<FilterEntity>, Box<FilterEntity>),
Xor(Box<FilterEntity>, Box<FilterEntity>),
Value(DBValue),
Column(String),
Null,
}Expand description
Filter expression used to query rows
Variants§
Equals(Box<FilterEntity>, Box<FilterEntity>)
GreaterThan(Box<FilterEntity>, Box<FilterEntity>)
LessThan(Box<FilterEntity>, Box<FilterEntity>)
FuzzyMatch(Box<FilterEntity>, Box<FilterEntity>, u8)
Not(Box<FilterEntity>)
And(Box<FilterEntity>, Box<FilterEntity>)
Or(Box<FilterEntity>, Box<FilterEntity>)
Xor(Box<FilterEntity>, Box<FilterEntity>)
Value(DBValue)
Column(String)
Null
Trait Implementations§
Source§impl<'__de, __Context> BorrowDecode<'__de, __Context> for FilterEntity
impl<'__de, __Context> BorrowDecode<'__de, __Context> for FilterEntity
Source§fn borrow_decode<__D: BorrowDecoder<'__de, Context = __Context>>(
decoder: &mut __D,
) -> Result<Self, DecodeError>
fn borrow_decode<__D: BorrowDecoder<'__de, Context = __Context>>( decoder: &mut __D, ) -> Result<Self, DecodeError>
Attempt to decode this type with the given BorrowDecode.
Source§impl Clone for FilterEntity
impl Clone for FilterEntity
Source§fn clone(&self) -> FilterEntity
fn clone(&self) -> FilterEntity
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 FilterEntity
impl Debug for FilterEntity
Source§impl<__Context> Decode<__Context> for FilterEntity
impl<__Context> Decode<__Context> for FilterEntity
Source§impl<'de> Deserialize<'de> for FilterEntity
impl<'de> Deserialize<'de> for FilterEntity
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 Encode for FilterEntity
impl Encode for FilterEntity
Auto Trait Implementations§
impl Freeze for FilterEntity
impl RefUnwindSafe for FilterEntity
impl Send for FilterEntity
impl Sync for FilterEntity
impl Unpin for FilterEntity
impl UnwindSafe for FilterEntity
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