Enum StringFunction
pub enum StringFunction {
Show 41 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,
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,
EscapeRegex,
}
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.EscapeRegex
Available on crate feature
regex
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 From<StringFunction> for SpecialEq<Arc<dyn ColumnsUdf>>
impl From<StringFunction> for SpecialEq<Arc<dyn ColumnsUdf>>
§fn from(func: StringFunction) -> SpecialEq<Arc<dyn ColumnsUdf>>
fn from(func: StringFunction) -> SpecialEq<Arc<dyn ColumnsUdf>>
Converts to this type from the input type.
§impl Hash for StringFunction
impl Hash for StringFunction
§impl PartialEq for StringFunction
impl PartialEq for StringFunction
§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
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<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.§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<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§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
§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 more§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a [
CompactString
]. Read more