pub enum Join<'a> {
Inner(JoinData<'a>),
Left(JoinData<'a>),
Right(JoinData<'a>),
Full(JoinData<'a>),
}
Expand description
A representation of a JOIN
statement.
Variants§
Inner(JoinData<'a>)
Implements an INNER JOIN
with given JoinData
.
Left(JoinData<'a>)
Implements an LEFT JOIN
with given JoinData
.
Right(JoinData<'a>)
Implements an RIGHT JOIN
with given JoinData
.
Full(JoinData<'a>)
Implements an FULL JOIN
with given JoinData
.
Trait Implementations§
impl<'a> StructuralPartialEq for Join<'a>
Auto Trait Implementations§
impl<'a> Freeze for Join<'a>
impl<'a> RefUnwindSafe for Join<'a>
impl<'a> Send for Join<'a>
impl<'a> Sync for Join<'a>
impl<'a> Unpin for Join<'a>
impl<'a> UnwindSafe for Join<'a>
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