pub struct JoinedSelectTable {
pub operator: JoinOperator,
pub table: SelectTable,
pub constraint: Option<JoinConstraint>,
}
Expand description
JOIN
clause
Fields§
§operator: JoinOperator
operator
table: SelectTable
table
constraint: Option<JoinConstraint>
constraint
Trait Implementations§
Source§impl Clone for JoinedSelectTable
impl Clone for JoinedSelectTable
Source§fn clone(&self) -> JoinedSelectTable
fn clone(&self) -> JoinedSelectTable
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 JoinedSelectTable
impl Debug for JoinedSelectTable
Source§impl PartialEq for JoinedSelectTable
impl PartialEq for JoinedSelectTable
Source§impl ToTokens for JoinedSelectTable
impl ToTokens for JoinedSelectTable
impl Eq for JoinedSelectTable
impl StructuralPartialEq for JoinedSelectTable
Auto Trait Implementations§
impl Freeze for JoinedSelectTable
impl RefUnwindSafe for JoinedSelectTable
impl Send for JoinedSelectTable
impl Sync for JoinedSelectTable
impl Unpin for JoinedSelectTable
impl UnwindSafe for JoinedSelectTable
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.