pub enum IRStringFunction {
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.Implementations§
Source§impl IRStringFunction
impl IRStringFunction
pub fn function_options(&self) -> FunctionOptions
Trait Implementations§
Source§impl Clone for IRStringFunction
impl Clone for IRStringFunction
Source§fn clone(&self) -> IRStringFunction
fn clone(&self) -> IRStringFunction
Returns a duplicate 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 IRStringFunction
impl Debug for IRStringFunction
Source§impl Display for IRStringFunction
impl Display for IRStringFunction
Source§impl From<IRStringFunction> for IRFunctionExpr
impl From<IRStringFunction> for IRFunctionExpr
Source§fn from(str: IRStringFunction) -> Self
fn from(str: IRStringFunction) -> Self
Converts to this type from the input type.
Source§impl From<IRStringFunction> for SpecialEq<Arc<dyn ColumnsUdf>>
impl From<IRStringFunction> for SpecialEq<Arc<dyn ColumnsUdf>>
Source§fn from(func: IRStringFunction) -> Self
fn from(func: IRStringFunction) -> Self
Converts to this type from the input type.
Source§impl Hash for IRStringFunction
impl Hash for IRStringFunction
Source§impl PartialEq for IRStringFunction
impl PartialEq for IRStringFunction
impl Eq for IRStringFunction
impl StructuralPartialEq for IRStringFunction
Auto Trait Implementations§
impl Freeze for IRStringFunction
impl RefUnwindSafe for IRStringFunction
impl Send for IRStringFunction
impl Sync for IRStringFunction
impl Unpin for IRStringFunction
impl UnwindSafe for IRStringFunction
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> Key for Twhere
T: Clone,
impl<T> Key for Twhere
T: Clone,
Source§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