pub struct SetOpSpec {
pub operator: SetOperator,
pub operand_sql: String,
pub operand_params: Vec<DbValue>,
}Expand description
A set operation operand: a pre-compiled SQL string and its bound params.
Per D5, operands should not contain ORDER BY / LIMIT (caller responsibility).
Fields§
§operator: SetOperator§operand_sql: String§operand_params: Vec<DbValue>Trait Implementations§
Auto Trait Implementations§
impl Freeze for SetOpSpec
impl RefUnwindSafe for SetOpSpec
impl Send for SetOpSpec
impl Sync for SetOpSpec
impl Unpin for SetOpSpec
impl UnsafeUnpin for SetOpSpec
impl UnwindSafe for SetOpSpec
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