Enum deltalake::kernel::Scalar

source ·
pub enum Scalar {
Show 15 variants Integer(i32), Long(i64), Short(i16), Byte(i8), Float(f32), Double(f64), String(String), Boolean(bool), Timestamp(i64), TimestampNtz(i64), Date(i32), Binary(Vec<u8>), Decimal(i128, u8, i8), Null(DataType), Struct(Vec<Scalar>, Vec<StructField>),
}
Expand description

A single value, which can be null. Used for representing literal values in [Expressions][crate::expressions::Expression].

Variants§

§

Integer(i32)

32bit integer

§

Long(i64)

64bit integer

§

Short(i16)

16bit integer

§

Byte(i8)

8bit integer

§

Float(f32)

32bit floating point

§

Double(f64)

64bit floating point

§

String(String)

utf-8 encoded string.

§

Boolean(bool)

true or false value

§

Timestamp(i64)

Microsecond precision timestamp, adjusted to UTC.

§

TimestampNtz(i64)

Microsecond precision timestamp, with no timezone.

§

Date(i32)

Date stored as a signed 32bit int days since UNIX epoch 1970-01-01

§

Binary(Vec<u8>)

Binary data

§

Decimal(i128, u8, i8)

Decimal value

§

Null(DataType)

Null value with a given data type.

§

Struct(Vec<Scalar>, Vec<StructField>)

Struct value

Implementations§

source§

impl Scalar

source

pub fn to_array(&self, num_rows: usize) -> Result<Arc<dyn Array>, Error>

Convert scalar to arrow array.

source§

impl Scalar

source

pub fn data_type(&self) -> DataType

Returns the data type of this scalar.

source

pub fn is_null(&self) -> bool

Returns true if this scalar is null.

source

pub fn serialize(&self) -> String

Serializes this scalar as a string.

source

pub fn serialize_encoded(&self) -> String

Serializes this scalar as a string for use in hive partition file names.

source

pub fn from_array(arr: &dyn Array, index: usize) -> Option<Scalar>

Create a Scalar form a row in an arrow array.

Trait Implementations§

source§

impl Clone for Scalar

source§

fn clone(&self) -> Scalar

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Scalar

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Display for Scalar

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl From<&str> for Scalar

source§

fn from(s: &str) -> Scalar

Converts to this type from the input type.
source§

impl From<String> for Scalar

source§

fn from(value: String) -> Scalar

Converts to this type from the input type.
source§

impl From<bool> for Scalar

source§

fn from(b: bool) -> Scalar

Converts to this type from the input type.
source§

impl From<i32> for Scalar

source§

fn from(i: i32) -> Scalar

Converts to this type from the input type.
source§

impl From<i64> for Scalar

source§

fn from(i: i64) -> Scalar

Converts to this type from the input type.
source§

impl PartialEq for Scalar

source§

fn eq(&self, other: &Scalar) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for Scalar

source§

fn partial_cmp(&self, other: &Scalar) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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 more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl StructuralPartialEq for Scalar

Auto Trait Implementations§

§

impl Freeze for Scalar

§

impl RefUnwindSafe for Scalar

§

impl Send for Scalar

§

impl Sync for Scalar

§

impl Unpin for Scalar

§

impl UnwindSafe for Scalar

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<Unshared, Shared> IntoShared<Shared> for Unshared
where Shared: FromUnshared<Unshared>,

source§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> Allocation for T
where T: RefUnwindSafe + Send + Sync,

source§

impl<T> Ungil for T
where T: Send,