Enum polars_lazy::prelude::LiteralValue
pub enum LiteralValue {
Show 23 variants
Null,
Boolean(bool),
String(String),
Binary(Vec<u8>),
UInt8(u8),
UInt16(u16),
UInt32(u32),
UInt64(u64),
Int8(i8),
Int16(i16),
Int32(i32),
Int64(i64),
Float32(f32),
Float64(f64),
Range {
low: i64,
high: i64,
data_type: DataType,
},
Date(i32),
DateTime(i64, TimeUnit, Option<String>),
Duration(i64, TimeUnit),
Time(i64),
Series(SpecialEq<Series>),
Float(f64),
Int(i128),
StrCat(String),
}Variants§
Null
Boolean(bool)
A binary true or false.
String(String)
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.
Range
Date(i32)
Available on crate feature
dtype-date only.DateTime(i64, TimeUnit, Option<String>)
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>)
Float(f64)
Int(i128)
StrCat(String)
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
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 Hash for LiteralValue
impl Hash for LiteralValue
§impl PartialEq for LiteralValue
impl PartialEq for LiteralValue
§fn eq(&self, other: &LiteralValue) -> bool
fn eq(&self, other: &LiteralValue) -> bool
This method tests for
self and other values to be equal, and is used
by ==.§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 TryFrom<AnyValue<'_>> for LiteralValue
impl TryFrom<AnyValue<'_>> for LiteralValue
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> 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