pub enum ConcatStrNullBehavior {
Propagate,
Ignore,
Replace(String),
}Expand description
Expression AST and supporting enums.
Null treatment for Expr::ConcatStr.
Variants§
Propagate
A null in any input produces a null output for that row.
Ignore
Omit null inputs; a row whose inputs are all null remains null.
Replace(String)
Replace every null input with this string before concatenation.
Trait Implementations§
Source§impl Clone for ConcatStrNullBehavior
impl Clone for ConcatStrNullBehavior
Source§fn clone(&self) -> ConcatStrNullBehavior
fn clone(&self) -> ConcatStrNullBehavior
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ConcatStrNullBehavior
impl Debug for ConcatStrNullBehavior
impl Eq for ConcatStrNullBehavior
Source§impl PartialEq for ConcatStrNullBehavior
impl PartialEq for ConcatStrNullBehavior
impl StructuralPartialEq for ConcatStrNullBehavior
Auto Trait Implementations§
impl Freeze for ConcatStrNullBehavior
impl RefUnwindSafe for ConcatStrNullBehavior
impl Send for ConcatStrNullBehavior
impl Sync for ConcatStrNullBehavior
impl Unpin for ConcatStrNullBehavior
impl UnsafeUnpin for ConcatStrNullBehavior
impl UnwindSafe for ConcatStrNullBehavior
Blanket Implementations§
impl<T> Allocation for T
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.