Struct partiql_ast::ast::ExprPair
source · pub struct ExprPair {
pub first: Box<Expr>,
pub second: Box<Expr>,
}
Expand description
A generic pair of expressions. Used in the pub struct
, searched_case
and simple_case
expr variants above.
Fields§
§first: Box<Expr>
§second: Box<Expr>
Trait Implementations§
source§impl PartialEq<ExprPair> for ExprPair
impl PartialEq<ExprPair> for ExprPair
impl StructuralPartialEq for ExprPair
Auto Trait Implementations§
impl RefUnwindSafe for ExprPair
impl Send for ExprPair
impl Sync for ExprPair
impl Unpin for ExprPair
impl UnwindSafe for ExprPair
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