pub enum TextProjectionTransform {
Show 15 variants
Field,
Trim,
Ltrim,
Rtrim,
Lower,
Upper,
Length,
Left,
Right,
StartsWith,
EndsWith,
Contains,
Position,
Replace,
Substring,
}Expand description
TextProjectionTransform
Canonical narrow text-projection transform taxonomy shared by fluent and SQL computed projection surfaces. This is intentionally limited to the admitted single-field text function family already shipped on the SQL surface.
Variants§
Field
Trim
Ltrim
Rtrim
Lower
Upper
Length
Left
Right
StartsWith
EndsWith
Contains
Position
Replace
Substring
Implementations§
Trait Implementations§
Source§impl Clone for TextProjectionTransform
impl Clone for TextProjectionTransform
Source§fn clone(&self) -> TextProjectionTransform
fn clone(&self) -> TextProjectionTransform
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 TextProjectionTransform
impl Debug for TextProjectionTransform
Source§impl PartialEq for TextProjectionTransform
impl PartialEq for TextProjectionTransform
impl Copy for TextProjectionTransform
impl Eq for TextProjectionTransform
impl StructuralPartialEq for TextProjectionTransform
Auto Trait Implementations§
impl Freeze for TextProjectionTransform
impl RefUnwindSafe for TextProjectionTransform
impl Send for TextProjectionTransform
impl Sync for TextProjectionTransform
impl Unpin for TextProjectionTransform
impl UnsafeUnpin for TextProjectionTransform
impl UnwindSafe for TextProjectionTransform
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