pub struct ArrayExpression<'a> {
pub array_span: Span,
pub bracket_span: Span,
pub elements: Vec<Expression<'a>>,
}Expand description
PostgreSQL ARRAY[…] literal expression
Fields§
§array_span: SpanSpan of the “ARRAY” keyword
bracket_span: SpanSpan of the bracket region “[…]”
elements: Vec<Expression<'a>>The element expressions
Trait Implementations§
Source§impl<'a> Clone for ArrayExpression<'a>
impl<'a> Clone for ArrayExpression<'a>
Source§fn clone(&self) -> ArrayExpression<'a>
fn clone(&self) -> ArrayExpression<'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 ArrayExpression<'a>
impl<'a> Debug for ArrayExpression<'a>
Auto Trait Implementations§
impl<'a> Freeze for ArrayExpression<'a>
impl<'a> RefUnwindSafe for ArrayExpression<'a>
impl<'a> Send for ArrayExpression<'a>
impl<'a> Sync for ArrayExpression<'a>
impl<'a> Unpin for ArrayExpression<'a>
impl<'a> UnsafeUnpin for ArrayExpression<'a>
impl<'a> UnwindSafe for ArrayExpression<'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