Struct gitql_ast::expression::LikeExpression
source · pub struct LikeExpression {
pub input: Box<dyn Expression>,
pub pattern: Box<dyn Expression>,
}
Fields§
§input: Box<dyn Expression>
§pattern: Box<dyn Expression>
Trait Implementations§
source§impl Expression for LikeExpression
impl Expression for LikeExpression
fn expression_kind(&self) -> ExpressionKind
fn expr_type(&self, _scope: &Enviroment) -> DataType
fn as_any(&self) -> &dyn Any
Auto Trait Implementations§
impl !RefUnwindSafe for LikeExpression
impl !Send for LikeExpression
impl !Sync for LikeExpression
impl Unpin for LikeExpression
impl !UnwindSafe for LikeExpression
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