pub struct BitwiseExpr {
pub left: Box<dyn Expr>,
pub operator: BinaryBitwiseOperator,
pub right: Box<dyn Expr>,
pub result_type: Box<dyn DataType>,
}
Fields§
§left: Box<dyn Expr>
§operator: BinaryBitwiseOperator
§right: Box<dyn Expr>
§result_type: Box<dyn DataType>
Trait Implementations§
Source§impl Clone for BitwiseExpr
impl Clone for BitwiseExpr
Source§fn clone(&self) -> BitwiseExpr
fn clone(&self) -> BitwiseExpr
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for BitwiseExpr
impl !RefUnwindSafe for BitwiseExpr
impl !Send for BitwiseExpr
impl !Sync for BitwiseExpr
impl Unpin for BitwiseExpr
impl !UnwindSafe for BitwiseExpr
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