Struct datafusion_expr::expr::Like
source · pub struct Like {
pub negated: bool,
pub expr: Box<Expr>,
pub pattern: Box<Expr>,
pub escape_char: Option<char>,
}
Expand description
LIKE expression
Fields
negated: bool
expr: Box<Expr>
pattern: Box<Expr>
escape_char: Option<char>
Implementations
Trait Implementations
impl Eq for Like
impl StructuralEq for Like
impl StructuralPartialEq for Like
Auto Trait Implementations
impl !RefUnwindSafe for Like
impl Send for Like
impl Sync for Like
impl Unpin for Like
impl !UnwindSafe for Like
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more