Enum sea_query::query::ConditionExpression [−][src]
pub enum ConditionExpression {
Condition(Condition),
SimpleExpr(SimpleExpr),
}Expand description
Represents anything that can be passed to an Condition::any or Condition::all’s Condition::add method.
The arguments are automatically converted to the right enum.
Variants
Condition(Condition)Tuple Fields of Condition
0: ConditionSimpleExpr(SimpleExpr)Tuple Fields of SimpleExpr
0: SimpleExprTrait Implementations
Performs the conversion.
Auto Trait Implementations
impl !RefUnwindSafe for ConditionExpression
impl Send for ConditionExpression
impl Sync for ConditionExpression
impl Unpin for ConditionExpression
impl !UnwindSafe for ConditionExpression
Blanket Implementations
Mutably borrows from an owned value. Read more