pub enum JoinConstraint {
On(Expr),
Using(Vec<Ident>),
Natural,
None,
}
Variants§
Trait Implementations§
Source§impl Clone for JoinConstraint
impl Clone for JoinConstraint
Source§fn clone(&self) -> JoinConstraint
fn clone(&self) -> JoinConstraint
Returns a copy 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 JoinConstraint
impl Debug for JoinConstraint
Source§impl Hash for JoinConstraint
impl Hash for JoinConstraint
Source§impl Ord for JoinConstraint
impl Ord for JoinConstraint
Source§fn cmp(&self, other: &JoinConstraint) -> Ordering
fn cmp(&self, other: &JoinConstraint) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for JoinConstraint
impl PartialEq for JoinConstraint
Source§impl PartialOrd for JoinConstraint
impl PartialOrd for JoinConstraint
impl Eq for JoinConstraint
impl StructuralPartialEq for JoinConstraint
Auto Trait Implementations§
impl Freeze for JoinConstraint
impl RefUnwindSafe for JoinConstraint
impl Send for JoinConstraint
impl Sync for JoinConstraint
impl Unpin for JoinConstraint
impl UnwindSafe for JoinConstraint
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