pub enum StringFunction {
Show 43 variants
ConcatHorizontal {
delimiter: PlSmallStr,
ignore_nulls: bool,
},
ConcatVertical {
delimiter: PlSmallStr,
ignore_nulls: bool,
},
Contains {
literal: bool,
strict: bool,
},
CountMatches(bool),
EndsWith,
Extract(usize),
ExtractAll,
ExtractGroups {
dtype: DataType,
pat: PlSmallStr,
},
Find {
literal: bool,
strict: bool,
},
ToInteger(bool),
LenBytes,
LenChars,
Lowercase,
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,
ContainsAny {
ascii_case_insensitive: bool,
},
ReplaceMany {
ascii_case_insensitive: bool,
},
ExtractMany {
ascii_case_insensitive: bool,
overlapping: bool,
},
FindMany {
ascii_case_insensitive: bool,
overlapping: bool,
},
EscapeRegex,
}Available on crate feature
strings only.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
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.ContainsAny
Available on crate feature
find_many only.ReplaceMany
Available on crate feature
find_many only.ExtractMany
Available on crate feature
find_many only.FindMany
Available on crate feature
find_many only.EscapeRegex
Available on crate feature
regex only.Trait Implementations§
Source§impl Clone for StringFunction
impl Clone for StringFunction
Source§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 moreSource§impl Debug for StringFunction
impl Debug for StringFunction
Source§impl<'de> Deserialize<'de> for StringFunction
impl<'de> Deserialize<'de> for StringFunction
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for StringFunction
impl Display for StringFunction
Source§impl From<StringFunction> for FunctionExpr
impl From<StringFunction> for FunctionExpr
Source§fn from(str: StringFunction) -> Self
fn from(str: StringFunction) -> Self
Converts to this type from the input type.
Source§impl From<StringFunction> for SpecialEq<Arc<dyn ColumnsUdf>>
impl From<StringFunction> for SpecialEq<Arc<dyn ColumnsUdf>>
Source§fn from(func: StringFunction) -> Self
fn from(func: StringFunction) -> Self
Converts to this type from the input type.
Source§impl Hash for StringFunction
impl Hash for StringFunction
Source§impl PartialEq for StringFunction
impl PartialEq for StringFunction
Source§impl Serialize for StringFunction
impl Serialize for StringFunction
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
Source§fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
Fallible version of
ToCompactString::to_compact_string() Read moreSource§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a
CompactString. Read more