pub struct TypedArray {
pub data_type: DataType,
pub elem: Vec<Expr>,
}Expand description
A typed array expression e.g. ARRAY<INT64>[1, 2, 3]
Fields§
§data_type: DataTypeThe data type of the array elements
elem: Vec<Expr>The list of expressions between brackets
Trait Implementations§
Source§impl Clone for TypedArray
impl Clone for TypedArray
Source§fn clone(&self) -> TypedArray
fn clone(&self) -> TypedArray
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 Debug for TypedArray
impl Debug for TypedArray
Source§impl<'de> Deserialize<'de> for TypedArray
impl<'de> Deserialize<'de> for TypedArray
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 Display for TypedArray
impl Display for TypedArray
Source§impl Hash for TypedArray
impl Hash for TypedArray
Source§impl Ord for TypedArray
impl Ord for TypedArray
Source§fn cmp(&self, other: &TypedArray) -> Ordering
fn cmp(&self, other: &TypedArray) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for TypedArray
impl PartialEq for TypedArray
Source§impl PartialOrd for TypedArray
impl PartialOrd for TypedArray
Source§impl Serialize for TypedArray
impl Serialize for TypedArray
Source§impl Visit for TypedArray
impl Visit for TypedArray
Source§impl VisitMut for TypedArray
impl VisitMut for TypedArray
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
impl Eq for TypedArray
impl StructuralPartialEq for TypedArray
Auto Trait Implementations§
impl Freeze for TypedArray
impl RefUnwindSafe for TypedArray
impl Send for TypedArray
impl Sync for TypedArray
impl Unpin for TypedArray
impl UnwindSafe for TypedArray
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