pub enum Subscript {
Index {
index: Expr,
},
Slice {
lower_bound: Option<Expr>,
upper_bound: Option<Expr>,
stride: Option<Expr>,
},
}
Expand description
The contents inside the [
and ]
in a subscript expression.
Variants§
Index
Accesses the element of the array at the given index.
Slice
Accesses a slice of an array on PostgreSQL, e.g.
=> select (array[1,2,3,4,5,6])[2:5];
-----------
{2,3,4,5}
The lower and/or upper bound can be omitted to slice from the start or end of the array respectively.
See https://www.postgresql.org/docs/current/arrays.html#ARRAYS-ACCESSING.
Also supports an optional “stride” as the last element (this is not supported by postgres), e.g.
=> select (array[1,2,3,4,5,6])[1:6:2];
-----------
{1,3,5}
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Subscript
impl<'de> Deserialize<'de> for Subscript
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Ord for Subscript
impl Ord for Subscript
Source§impl PartialOrd for Subscript
impl PartialOrd for Subscript
Source§impl VisitMut for Subscript
impl VisitMut for Subscript
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
impl Eq for Subscript
impl StructuralPartialEq for Subscript
Auto Trait Implementations§
impl Freeze for Subscript
impl RefUnwindSafe for Subscript
impl Send for Subscript
impl Sync for Subscript
impl Unpin for Subscript
impl UnwindSafe for Subscript
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