Enum LiteralValue
pub enum LiteralValue {
Show 25 variants
Null,
Boolean(bool),
String(PlSmallStr),
Binary(Vec<u8>),
UInt8(u8),
UInt16(u16),
UInt32(u32),
UInt64(u64),
Int8(i8),
Int16(i16),
Int32(i32),
Int64(i64),
Float32(f32),
Float64(f64),
Decimal(i128, usize),
Range {
low: i64,
high: i64,
dtype: DataType,
},
Date(i32),
DateTime(i64, TimeUnit, Option<PlSmallStr>),
Duration(i64, TimeUnit),
Time(i64),
Series(SpecialEq<Series>),
OtherScalar(Scalar),
Float(f64),
Int(i128),
StrCat(PlSmallStr),
}
Variants§
Null
Boolean(bool)
A binary true or false.
String(PlSmallStr)
A UTF8 encoded string type.
Binary(Vec<u8>)
A raw binary array
UInt8(u8)
Available on crate feature
dtype-u8
only.An unsigned 8-bit integer number.
UInt16(u16)
Available on crate feature
dtype-u16
only.An unsigned 16-bit integer number.
UInt32(u32)
An unsigned 32-bit integer number.
UInt64(u64)
An unsigned 64-bit integer number.
Int8(i8)
Available on crate feature
dtype-i8
only.An 8-bit integer number.
Int16(i16)
Available on crate feature
dtype-i16
only.A 16-bit integer number.
Int32(i32)
A 32-bit integer number.
Int64(i64)
A 64-bit integer number.
Float32(f32)
A 32-bit floating point number.
Float64(f64)
A 64-bit floating point number.
Decimal(i128, usize)
Available on crate feature
dtype-decimal
only.A 128-bit decimal number with a maximum scale of 38.
Range
Date(i32)
Available on crate feature
dtype-date
only.DateTime(i64, TimeUnit, Option<PlSmallStr>)
Available on crate feature
dtype-datetime
only.Duration(i64, TimeUnit)
Available on crate feature
dtype-duration
only.Time(i64)
Available on crate feature
dtype-time
only.Series(SpecialEq<Series>)
OtherScalar(Scalar)
Float(f64)
Int(i128)
StrCat(PlSmallStr)
Implementations§
§impl LiteralValue
impl LiteralValue
pub fn materialize(self) -> LiteralValue
pub fn to_any_value(&self) -> Option<AnyValue<'_>>
pub fn get_datatype(&self) -> DataType
pub fn get_datatype(&self) -> DataType
Getter for the DataType
of the value
pub fn is_scalar(&self) -> bool
Trait Implementations§
§impl Clone for LiteralValue
impl Clone for LiteralValue
§fn clone(&self) -> LiteralValue
fn clone(&self) -> LiteralValue
Returns a copy 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 more§impl Debug for LiteralValue
impl Debug for LiteralValue
§impl<'de> Deserialize<'de> for LiteralValue
impl<'de> Deserialize<'de> for LiteralValue
§fn deserialize<__D>(
__deserializer: __D,
) -> Result<LiteralValue, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<LiteralValue, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl From<AnyValue<'_>> for LiteralValue
impl From<AnyValue<'_>> for LiteralValue
§fn from(value: AnyValue<'_>) -> LiteralValue
fn from(value: AnyValue<'_>) -> LiteralValue
Converts to this type from the input type.
§impl Hash for LiteralValue
impl Hash for LiteralValue
§impl PartialEq for LiteralValue
impl PartialEq for LiteralValue
§impl Serialize for LiteralValue
impl Serialize for LiteralValue
§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for LiteralValue
Auto Trait Implementations§
impl Freeze for LiteralValue
impl !RefUnwindSafe for LiteralValue
impl Send for LiteralValue
impl Sync for LiteralValue
impl Unpin for LiteralValue
impl !UnwindSafe for LiteralValue
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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