Struct partiql_logical::ListExpr
source · pub struct ListExpr {
pub elements: Vec<ValueExpr>,
}
Expand description
Represents a PartiQL list expression, e.g. [a.c * 2, 5]
.
Fields§
§elements: Vec<ValueExpr>
Implementations§
Trait Implementations§
source§impl PartialEq<ListExpr> for ListExpr
impl PartialEq<ListExpr> for ListExpr
impl Eq for ListExpr
impl StructuralEq for ListExpr
impl StructuralPartialEq for ListExpr
Auto Trait Implementations§
impl RefUnwindSafe for ListExpr
impl Send for ListExpr
impl Sync for ListExpr
impl Unpin for ListExpr
impl UnwindSafe for ListExpr
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