pub struct MatchConditionQuery { /* private fields */ }Implementations§
Trait Implementations§
Source§impl FinalizeTrait for MatchConditionQuery
impl FinalizeTrait for MatchConditionQuery
Source§impl MatchActionTrait for MatchConditionQuery
impl MatchActionTrait for MatchConditionQuery
Source§fn delete(&self) -> Box<dyn ReturnTrait>
fn delete(&self) -> Box<dyn ReturnTrait>
DELETE query function.
Source§fn delete_detach(&self) -> Box<dyn ReturnTrait>
fn delete_detach(&self) -> Box<dyn ReturnTrait>
DELETE DETACH query function.
Source§impl MatchConditionTrait for MatchConditionQuery
impl MatchConditionTrait for MatchConditionQuery
Source§fn and(
&mut self,
prop: &str,
op: CompOper,
eq: PropType,
) -> Box<dyn MatchConditionTrait>
fn and( &mut self, prop: &str, op: CompOper, eq: PropType, ) -> Box<dyn MatchConditionTrait>
Pure AND query function. Read more
Source§fn or(
&mut self,
prop: &str,
op: CompOper,
eq: PropType,
) -> Box<dyn MatchConditionTrait>
fn or( &mut self, prop: &str, op: CompOper, eq: PropType, ) -> Box<dyn MatchConditionTrait>
Pure OR query function. Read more
Source§impl QueryTrait for MatchConditionQuery
impl QueryTrait for MatchConditionQuery
Source§impl ReturnTrait for MatchConditionQuery
impl ReturnTrait for MatchConditionQuery
fn return(&mut self, nv: &str) -> Box<dyn ReturnParamTrait>
fn return_field(&mut self, nv: &str, field: &str) -> Box<dyn ReturnParamTrait>
fn return_many(&mut self, nvs: Vec<&str>) -> Box<dyn ReturnParamTrait>
Auto Trait Implementations§
impl Freeze for MatchConditionQuery
impl RefUnwindSafe for MatchConditionQuery
impl Send for MatchConditionQuery
impl Sync for MatchConditionQuery
impl Unpin for MatchConditionQuery
impl UnwindSafe for MatchConditionQuery
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