pub enum StringFunction {
Show 46 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,
},
Normalize {
form: UnicodeForm,
},
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,
}
Variants§
ConcatHorizontal
ConcatVertical
Contains
CountMatches(bool)
EndsWith
Extract(usize)
ExtractAll
ExtractGroups
Find
ToInteger(bool)
LenBytes
LenChars
Lowercase
JsonDecode
JsonPathMatch
Replace
Normalize
Fields
§
form: UnicodeForm
Reverse
PadStart
PadEnd
Slice
Head
Tail
HexEncode
HexDecode(bool)
Base64Encode
Base64Decode(bool)
StartsWith
StripChars
StripCharsStart
StripCharsEnd
StripPrefix
StripSuffix
SplitExact
SplitN(usize)
Strptime(DataType, StrptimeOptions)
Split(bool)
ToDecimal(usize)
Titlecase
Uppercase
ZFill
ContainsAny
ReplaceMany
ExtractMany
FindMany
EscapeRegex
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<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
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) -> FunctionExpr
fn from(str: StringFunction) -> FunctionExpr
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) -> SpecialEq<Arc<dyn ColumnsUdf>>
fn from(func: StringFunction) -> SpecialEq<Arc<dyn ColumnsUdf>>
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
Source§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§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