pub struct RowExpression<'a> {
pub paren_span: Span,
pub elements: Vec<Expression<'a>>,
}Expand description
A row/tuple constructor expression: (expr1, expr2, ...)
Fields§
§paren_span: SpanSpan of the surrounding parentheses
elements: Vec<Expression<'a>>Elements of the tuple
Trait Implementations§
Source§impl<'a> Clone for RowExpression<'a>
impl<'a> Clone for RowExpression<'a>
Source§fn clone(&self) -> RowExpression<'a>
fn clone(&self) -> RowExpression<'a>
Returns a duplicate 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<'a> Debug for RowExpression<'a>
impl<'a> Debug for RowExpression<'a>
Auto Trait Implementations§
impl<'a> Freeze for RowExpression<'a>
impl<'a> RefUnwindSafe for RowExpression<'a>
impl<'a> Send for RowExpression<'a>
impl<'a> Sync for RowExpression<'a>
impl<'a> Unpin for RowExpression<'a>
impl<'a> UnsafeUnpin for RowExpression<'a>
impl<'a> UnwindSafe for RowExpression<'a>
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