pub enum JoinOperand {
OuterAndInner(String, String),
Inner(String),
}
Variants§
OuterAndInner(String, String)
Used when JOIN is used first time on query, X JOIN Y,
Inner(String)
Used for JOIN that used afrer first time, JOIN Z
Auto Trait Implementations§
impl Freeze for JoinOperand
impl RefUnwindSafe for JoinOperand
impl Send for JoinOperand
impl Sync for JoinOperand
impl Unpin for JoinOperand
impl UnwindSafe for JoinOperand
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