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 after first time, JOIN Z
Trait Implementations§
Source§impl Clone for JoinOperand
impl Clone for JoinOperand
Source§fn clone(&self) -> JoinOperand
fn clone(&self) -> JoinOperand
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 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