Struct dfsql::sql::expr::ConditionalExpr
source · pub struct ConditionalExpr {
pub first_case: ConditionalCase,
pub other_cases: Vec<ConditionalCase>,
pub otherwise: Expr,
}Fields§
§first_case: ConditionalCase§other_cases: Vec<ConditionalCase>§otherwise: ExprTrait Implementations§
source§impl Clone for ConditionalExpr
impl Clone for ConditionalExpr
source§fn clone(&self) -> ConditionalExpr
fn clone(&self) -> ConditionalExpr
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 ConditionalExpr
impl Debug for ConditionalExpr
source§impl PartialEq for ConditionalExpr
impl PartialEq for ConditionalExpr
source§fn eq(&self, other: &ConditionalExpr) -> bool
fn eq(&self, other: &ConditionalExpr) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ConditionalExpr
Auto Trait Implementations§
impl RefUnwindSafe for ConditionalExpr
impl Send for ConditionalExpr
impl Sync for ConditionalExpr
impl Unpin for ConditionalExpr
impl UnwindSafe for ConditionalExpr
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