pub enum Operand {
Column(ColId),
Literal(OwnedValue),
}Expand description
One side of a SqlCondition::Simple. A Column lowers to its quoted
identifier (resolved from the schema at build time); a Literal lowers to a
bound ? param (query-builder.ts valuePositionToSQL).
Variants§
Column(ColId)
Literal(OwnedValue)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Operand
impl RefUnwindSafe for Operand
impl Send for Operand
impl Sync for Operand
impl Unpin for Operand
impl UnsafeUnpin for Operand
impl UnwindSafe for Operand
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