Struct polars_plan::dsl::binary::BinaryNameSpace
source · pub struct BinaryNameSpace(/* private fields */);
Expand description
Specialized expressions for Series
of DataType::String
.
Implementations§
source§impl BinaryNameSpace
impl BinaryNameSpace
sourcepub fn contains_literal(self, pat: Expr) -> Expr
pub fn contains_literal(self, pat: Expr) -> Expr
Check if a binary value contains a literal binary.
sourcepub fn ends_with(self, sub: Expr) -> Expr
pub fn ends_with(self, sub: Expr) -> Expr
Check if a binary value ends with the given sequence.
sourcepub fn starts_with(self, sub: Expr) -> Expr
pub fn starts_with(self, sub: Expr) -> Expr
Check if a binary value starts with the given sequence.
pub fn hex_decode(self, strict: bool) -> Expr
Available on crate feature
binary_encoding
only.pub fn hex_encode(self) -> Expr
Available on crate feature
binary_encoding
only.pub fn base64_decode(self, strict: bool) -> Expr
Available on crate feature
binary_encoding
only.pub fn base64_encode(self) -> Expr
Available on crate feature
binary_encoding
only.Auto Trait Implementations§
impl !RefUnwindSafe for BinaryNameSpace
impl Send for BinaryNameSpace
impl Sync for BinaryNameSpace
impl Unpin for BinaryNameSpace
impl !UnwindSafe for BinaryNameSpace
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