pub struct DatabaseFilter {
pub column: String,
pub operator: FilterOperator,
pub value: Value,
}
Expand description
データベース変更に対するフィルター条件
Fields§
§column: String
フィルター対象のカラム名
operator: FilterOperator
比較演算子
value: Value
比較する値
Trait Implementations§
Source§impl Clone for DatabaseFilter
impl Clone for DatabaseFilter
Source§fn clone(&self) -> DatabaseFilter
fn clone(&self) -> DatabaseFilter
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 DatabaseFilter
impl Debug for DatabaseFilter
Auto Trait Implementations§
impl Freeze for DatabaseFilter
impl RefUnwindSafe for DatabaseFilter
impl Send for DatabaseFilter
impl Sync for DatabaseFilter
impl Unpin for DatabaseFilter
impl UnwindSafe for DatabaseFilter
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