Enum polars_lazy::dsl::function_expr::StringFunction
pub enum StringFunction {
Show 40 variants
ConcatHorizontal {
delimiter: String,
ignore_nulls: bool,
},
ConcatVertical {
delimiter: String,
ignore_nulls: bool,
},
Contains {
literal: bool,
strict: bool,
},
CountMatches(bool),
EndsWith,
Extract(usize),
ExtractAll,
ExtractGroups {
dtype: DataType,
pat: String,
},
Find {
literal: bool,
strict: bool,
},
ToInteger(bool),
LenBytes,
LenChars,
Lowercase,
JsonDecode {
dtype: Option<DataType>,
infer_schema_len: Option<usize>,
},
JsonPathMatch,
Replace {
n: i64,
literal: bool,
},
Reverse,
PadStart {
length: usize,
fill_char: char,
},
PadEnd {
length: usize,
fill_char: char,
},
Slice,
Head,
Tail,
HexEncode,
HexDecode(bool),
Base64Encode,
Base64Decode(bool),
StartsWith,
StripChars,
StripCharsStart,
StripCharsEnd,
StripPrefix,
StripSuffix,
SplitExact {
n: usize,
inclusive: bool,
},
SplitN(usize),
Strptime(DataType, StrptimeOptions),
Split(bool),
ToDecimal(usize),
Titlecase,
Uppercase,
ZFill,
}Variants§
ConcatHorizontal
Available on crate feature
concat_str only.ConcatVertical
Available on crate feature
concat_str only.Contains
Available on crate feature
regex only.CountMatches(bool)
EndsWith
Extract(usize)
ExtractAll
ExtractGroups
Available on crate feature
extract_groups only.Find
Available on crate feature
regex only.ToInteger(bool)
Available on crate feature
string_to_integer only.LenBytes
LenChars
Lowercase
JsonDecode
Available on crate feature
extract_jsonpath only.JsonPathMatch
Available on crate feature
extract_jsonpath only.Replace
Available on crate feature
regex only.Reverse
Available on crate feature
string_reverse only.PadStart
Available on crate feature
string_pad only.PadEnd
Available on crate feature
string_pad only.Slice
Head
Tail
HexEncode
Available on crate feature
string_encoding only.HexDecode(bool)
Available on crate feature
binary_encoding only.Base64Encode
Available on crate feature
string_encoding only.Base64Decode(bool)
Available on crate feature
binary_encoding only.StartsWith
StripChars
StripCharsStart
StripCharsEnd
StripPrefix
StripSuffix
SplitExact
Available on crate feature
dtype-struct only.SplitN(usize)
Available on crate feature
dtype-struct only.Strptime(DataType, StrptimeOptions)
Available on crate feature
temporal only.Split(bool)
ToDecimal(usize)
Available on crate feature
dtype-decimal only.Titlecase
Available on crate feature
nightly only.Uppercase
ZFill
Available on crate feature
string_pad only.Trait Implementations§
§impl Clone for StringFunction
impl Clone for StringFunction
§fn clone(&self) -> StringFunction
fn clone(&self) -> StringFunction
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 StringFunction
impl Debug for StringFunction
§impl<'de> Deserialize<'de> for StringFunction
impl<'de> Deserialize<'de> for StringFunction
§fn deserialize<__D>(
__deserializer: __D
) -> Result<StringFunction, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<StringFunction, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl Display for StringFunction
impl Display for StringFunction
§impl From<StringFunction> for FunctionExpr
impl From<StringFunction> for FunctionExpr
§fn from(str: StringFunction) -> FunctionExpr
fn from(str: StringFunction) -> FunctionExpr
Converts to this type from the input type.
§impl Hash for StringFunction
impl Hash for StringFunction
§impl PartialEq for StringFunction
impl PartialEq for StringFunction
§fn eq(&self, other: &StringFunction) -> bool
fn eq(&self, other: &StringFunction) -> bool
This method tests for
self and other values to be equal, and is used
by ==.§impl Serialize for StringFunction
impl Serialize for StringFunction
§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 Eq for StringFunction
impl StructuralPartialEq for StringFunction
Auto Trait Implementations§
impl Freeze for StringFunction
impl !RefUnwindSafe for StringFunction
impl Send for StringFunction
impl Sync for StringFunction
impl Unpin for StringFunction
impl !UnwindSafe for StringFunction
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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