pub struct ExpressionList {
pub token: Token,
pub expressions: Vec<Expression>,
}Expand description
Expression list (for IN values)
Fields§
§token: Token§expressions: Vec<Expression>Trait Implementations§
Source§impl Clone for ExpressionList
impl Clone for ExpressionList
Source§fn clone(&self) -> ExpressionList
fn clone(&self) -> ExpressionList
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 ExpressionList
impl Debug for ExpressionList
Source§impl Display for ExpressionList
impl Display for ExpressionList
Source§impl PartialEq for ExpressionList
impl PartialEq for ExpressionList
impl StructuralPartialEq for ExpressionList
Auto Trait Implementations§
impl Freeze for ExpressionList
impl RefUnwindSafe for ExpressionList
impl Send for ExpressionList
impl Sync for ExpressionList
impl Unpin for ExpressionList
impl UnsafeUnpin for ExpressionList
impl UnwindSafe for ExpressionList
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