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: bool
true
for ARRAY[..]
, false
for [..]
Trait Implementations§
source§impl Ord for Array
impl Ord for Array
source§impl PartialEq for Array
impl PartialEq for Array
source§impl PartialOrd for Array
impl PartialOrd for Array
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Eq for Array
impl StructuralEq for Array
impl StructuralPartialEq for Array
Auto Trait Implementations§
impl RefUnwindSafe for Array
impl Send for Array
impl Sync for Array
impl Unpin 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