Enum polars_lazy::dsl::StringFunction

pub enum StringFunction {
Show 40 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,
}

Variants§

§

ConcatHorizontal

Available on crate feature concat_str only.

Fields

§delimiter: PlSmallStr
§ignore_nulls: bool
§

ConcatVertical

Available on crate feature concat_str only.

Fields

§delimiter: PlSmallStr
§ignore_nulls: bool
§

Contains

Available on crate feature regex only.

Fields

§literal: bool
§strict: bool
§

CountMatches(bool)

§

EndsWith

§

Extract(usize)

§

ExtractAll

§

ExtractGroups

Available on crate feature extract_groups only.

Fields

§dtype: DataType
§

Find

Available on crate feature regex only.

Fields

§literal: bool
§strict: bool
§

ToInteger(bool)

Available on crate feature string_to_integer only.
§

LenBytes

§

LenChars

§

Lowercase

§

JsonDecode

Available on crate feature extract_jsonpath only.

Fields

§infer_schema_len: Option<usize>
§

JsonPathMatch

Available on crate feature extract_jsonpath only.
§

Replace

Available on crate feature regex only.

Fields

§literal: bool
§

Reverse

Available on crate feature string_reverse only.
§

PadStart

Available on crate feature string_pad only.

Fields

§length: usize
§fill_char: char
§

PadEnd

Available on crate feature string_pad only.

Fields

§length: usize
§fill_char: char
§

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.

Fields

§inclusive: bool
§

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

§

fn clone(&self) -> StringFunction

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Debug for StringFunction

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for StringFunction

§

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

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl From<StringFunction> for FunctionExpr

§

fn from(str: StringFunction) -> FunctionExpr

Converts to this type from the input type.
§

impl From<StringFunction> for SpecialEq<Arc<dyn ColumnsUdf>>

§

fn from(func: StringFunction) -> SpecialEq<Arc<dyn ColumnsUdf>>

Converts to this type from the input type.
§

impl Hash for StringFunction

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl PartialEq for StringFunction

§

fn eq(&self, other: &StringFunction) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Serialize for StringFunction

§

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§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> DynClone for T
where T: Clone,

source§

fn __clone_box(&self, _: Private) -> *mut ()

§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

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
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
§

impl<T> ToCompactString for T
where T: Display,

§

fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>

Fallible version of [ToCompactString::to_compact_string()] Read more
§

fn to_compact_string(&self) -> CompactString

Converts the given value to a [CompactString]. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

§

impl<T> Ungil for T
where T: Send,