pub struct BindOp {
pub expression: LogicalExpression,
pub variable: String,
pub input: Box<LogicalOperator>,
}Expand description
Bind a variable to an expression.
Fields§
§expression: LogicalExpressionExpression to compute.
variable: StringVariable to bind the result to.
input: Box<LogicalOperator>Input operator.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BindOp
impl RefUnwindSafe for BindOp
impl Send for BindOp
impl Sync for BindOp
impl Unpin for BindOp
impl UnwindSafe for BindOp
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