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