pub struct ListExpression {
pub token: Token,
pub elements: Vec<Expression>,
}Expand description
List expression (for IN clause values)
Fields§
§token: Token§elements: Vec<Expression>Trait Implementations§
Source§impl Clone for ListExpression
impl Clone for ListExpression
Source§fn clone(&self) -> ListExpression
fn clone(&self) -> ListExpression
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ListExpression
impl Debug for ListExpression
Source§impl Display for ListExpression
impl Display for ListExpression
Source§impl PartialEq for ListExpression
impl PartialEq for ListExpression
impl StructuralPartialEq for ListExpression
Auto Trait Implementations§
impl Freeze for ListExpression
impl RefUnwindSafe for ListExpression
impl Send for ListExpression
impl Sync for ListExpression
impl Unpin for ListExpression
impl UnsafeUnpin for ListExpression
impl UnwindSafe for ListExpression
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