#[repr(i32)]pub enum JoinType {
Undefined = 0,
JoinInner = 1,
JoinLeft = 2,
JoinFull = 3,
JoinRight = 4,
JoinSemi = 5,
JoinAnti = 6,
JoinUniqueOuter = 7,
JoinUniqueInner = 8,
}
Variants§
Undefined = 0
JoinInner = 1
JoinLeft = 2
JoinFull = 3
JoinRight = 4
JoinSemi = 5
JoinAnti = 6
JoinUniqueOuter = 7
JoinUniqueInner = 8
Implementations§
Trait Implementations§
Source§impl Ord for JoinType
impl Ord for JoinType
Source§impl PartialOrd for JoinType
impl PartialOrd for JoinType
impl Copy for JoinType
impl Eq for JoinType
impl StructuralPartialEq for JoinType
Auto Trait Implementations§
impl Freeze for JoinType
impl RefUnwindSafe for JoinType
impl Send for JoinType
impl Sync for JoinType
impl Unpin for JoinType
impl UnwindSafe for JoinType
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