Enum LiteralValue
pub enum LiteralValue {
Dyn(DynLiteralValue),
Scalar(Scalar),
Series(SpecialEq<Series>),
Range(RangeLiteralValue),
}
Variants§
Dyn(DynLiteralValue)
A dynamically inferred literal value. This needs to be materialized into a specific type.
Scalar(Scalar)
Series(SpecialEq<Series>)
Range(RangeLiteralValue)
Implementations§
§impl LiteralValue
impl LiteralValue
pub fn try_materialize_to_dtype( self, dtype: &DataType, ) -> Result<MaterializedLiteralValue, PolarsError>
pub fn extract_usize(&self) -> Result<usize, PolarsError>
pub fn materialize(self) -> LiteralValue
pub fn is_scalar(&self) -> bool
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 new_idxsize(value: u64) -> LiteralValue
pub fn extract_str(&self) -> Option<&str>
pub fn extract_binary(&self) -> Option<&[u8]>
pub fn is_null(&self) -> bool
pub fn bool(&self) -> Option<bool>
pub const fn untyped_null() -> LiteralValue
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 From<Scalar> for LiteralValue
impl From<Scalar> for LiteralValue
§fn from(value: Scalar) -> LiteralValue
fn from(value: Scalar) -> 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,
§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