pub struct Array {
pub elem: Vec<Expr>,
pub named: bool,
}Expand description
Represents an Array Expression, either
ARRAY[..], or [..]
Fields§
§elem: Vec<Expr>The list of expressions between brackets
named: booltrue for ARRAY[..], false for [..]
Trait Implementations§
Source§impl Ord for Array
impl Ord for Array
Source§impl PartialOrd for Array
impl PartialOrd for Array
Source§impl VisitMut for Array
impl VisitMut for Array
Source§fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
Mutably visit this node with the provided
VisitorMut. Read moreimpl Eq for Array
impl StructuralPartialEq for Array
Auto Trait Implementations§
impl Freeze for Array
impl RefUnwindSafe for Array
impl Send for Array
impl Sync for Array
impl Unpin for Array
impl UnsafeUnpin for Array
impl UnwindSafe for Array
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