pub enum JoinKind {
Comma,
Inner,
Cross,
Left,
Right,
Full,
}Expand description
Which join was written.
Variants§
Comma
A comma, which is a cross join that may still be reordered.
Inner
[INNER] JOIN.
Cross
CROSS JOIN, which SQLite refuses to reorder.
Left
LEFT [OUTER] JOIN.
Right
RIGHT [OUTER] JOIN.
Full
FULL [OUTER] JOIN.
Trait Implementations§
impl Copy for JoinKind
impl Eq for JoinKind
impl StructuralPartialEq for JoinKind
Auto Trait Implementations§
impl Freeze for JoinKind
impl RefUnwindSafe for JoinKind
impl Send for JoinKind
impl Sync for JoinKind
impl Unpin for JoinKind
impl UnsafeUnpin for JoinKind
impl UnwindSafe for JoinKind
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