Enum polars::prelude::StringFunction

pub enum StringFunction {
Show 33 variants ConcatHorizontal { delimiter: String, ignore_nulls: bool, }, ConcatVertical { delimiter: String, ignore_nulls: bool, }, Contains { literal: bool, strict: bool, }, CountMatches(bool), EndsWith, Extract(usize), ExtractAll, ExtractGroups { dtype: DataType, pat: String, }, Find { literal: bool, strict: bool, }, ToInteger(bool), LenBytes, LenChars, Lowercase, Replace { n: i64, literal: bool, }, Reverse, Slice, Head, Tail, HexEncode, Base64Encode, StartsWith, StripChars, StripCharsStart, StripCharsEnd, StripPrefix, StripSuffix, SplitExact { n: usize, inclusive: bool, }, SplitN(usize), Strptime(DataType, StrptimeOptions), Split(bool), ToDecimal(usize), Titlecase, Uppercase,
}
Available on crate feature lazy only.

Variants§

§

ConcatHorizontal

Available on crate feature concat_str only.

Fields

§delimiter: String
§ignore_nulls: bool
§

ConcatVertical

Available on crate feature concat_str only.

Fields

§delimiter: String
§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

§

Replace

Available on crate feature regex only.

Fields

§literal: bool
§

Reverse

Available on crate feature string_reverse only.
§

Slice

§

Head

§

Tail

§

HexEncode

Available on crate feature string_encoding only.
§

Base64Encode

Available on crate feature string_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

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 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 SeriesUdf>>

§

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

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

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

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

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

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> 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.

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> 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