pub enum SQLJoinType {
Inner,
Left,
Right,
Full,
Cross,
Natural,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for SQLJoinType
impl Clone for SQLJoinType
Source§fn clone(&self) -> SQLJoinType
fn clone(&self) -> SQLJoinType
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 moreSource§impl Debug for SQLJoinType
impl Debug for SQLJoinType
Source§impl PartialEq for SQLJoinType
impl PartialEq for SQLJoinType
impl StructuralPartialEq for SQLJoinType
Auto Trait Implementations§
impl Freeze for SQLJoinType
impl RefUnwindSafe for SQLJoinType
impl Send for SQLJoinType
impl Sync for SQLJoinType
impl Unpin for SQLJoinType
impl UnsafeUnpin for SQLJoinType
impl UnwindSafe for SQLJoinType
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