Struct gitql_ast::expression::LogicalExpression
source · pub struct LogicalExpression {
pub left: Box<dyn Expression>,
pub operator: BinaryLogicalOperator,
pub right: Box<dyn Expression>,
}
Fields§
§left: Box<dyn Expression>
§operator: BinaryLogicalOperator
§right: Box<dyn Expression>
Trait Implementations§
source§impl Expression for LogicalExpression
impl Expression for LogicalExpression
Auto Trait Implementations§
impl Freeze for LogicalExpression
impl !RefUnwindSafe for LogicalExpression
impl !Send for LogicalExpression
impl !Sync for LogicalExpression
impl Unpin for LogicalExpression
impl !UnwindSafe for LogicalExpression
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