Skip to main content

StringOps

Trait StringOps 

Source
pub trait StringOps: Expression<Output = String> {
    // Provided methods
    fn like(self, pattern: &str) -> LikeExpr<Self> { ... }
    fn ilike(self, pattern: &str) -> ILikeExpr<Self> { ... }
}
Expand description

Trait for string operations

Provided Methods§

Source

fn like(self, pattern: &str) -> LikeExpr<Self>

Source

fn ilike(self, pattern: &str) -> ILikeExpr<Self>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<E: Expression<Output = String>> StringOps for E