pub enum JoinOption {
FullJoin,
FullOuterJoin,
InnerJoin,
LeftJoin,
LeftOuterJoin,
RightJoin,
RightOuterJoin,
}Expand description
JoinOption(对齐 go-sqlbuilder)。
Variants§
Trait Implementations§
Source§impl Clone for JoinOption
impl Clone for JoinOption
Source§fn clone(&self) -> JoinOption
fn clone(&self) -> JoinOption
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 JoinOption
impl Debug for JoinOption
Source§impl PartialEq for JoinOption
impl PartialEq for JoinOption
impl Copy for JoinOption
impl Eq for JoinOption
impl StructuralPartialEq for JoinOption
Auto Trait Implementations§
impl Freeze for JoinOption
impl RefUnwindSafe for JoinOption
impl Send for JoinOption
impl Sync for JoinOption
impl Unpin for JoinOption
impl UnwindSafe for JoinOption
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