pub enum FilterOperator {
Show 13 variants
Eq,
Neq,
Gt,
Gte,
Lt,
Lte,
In,
NotIn,
ContainedBy,
Contains,
ContainedByArray,
Like,
ILike,
}
Expand description
フィルター演算子
Variants§
Eq
等しい
Neq
等しくない
Gt
より大きい
Gte
より大きいか等しい
Lt
より小さい
Lte
より小さいか等しい
In
含む
NotIn
含まない
ContainedBy
近い値(配列内の値に対して)
Contains
含む(配列が対象の値を含む)
ContainedByArray
完全に含む(配列が対象の配列のすべての要素を含む)
Like
LIKE演算子(ワイルドカード検索)
ILike
ILIKE演算子(大文字小文字を区別しないワイルドカード検索)
Trait Implementations§
Source§impl Clone for FilterOperator
impl Clone for FilterOperator
Source§fn clone(&self) -> FilterOperator
fn clone(&self) -> FilterOperator
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 FilterOperator
impl Debug for FilterOperator
Source§impl PartialEq for FilterOperator
impl PartialEq for FilterOperator
Source§impl Serialize for FilterOperator
impl Serialize for FilterOperator
Source§impl ToString for FilterOperator
impl ToString for FilterOperator
impl StructuralPartialEq for FilterOperator
Auto Trait Implementations§
impl Freeze for FilterOperator
impl RefUnwindSafe for FilterOperator
impl Send for FilterOperator
impl Sync for FilterOperator
impl Unpin for FilterOperator
impl UnwindSafe for FilterOperator
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