pub struct FromClause {
pub primary: TableRef,
pub joins: Vec<FromJoin>,
}Expand description
FROM clause shape. v1.10 accepts a primary table plus a flat list of
joined peers — FROM a [, b]* [INNER|LEFT] JOIN c ON expr .... The
joins evaluate left-associatively in nested-loop order.
Fields§
§primary: TableRef§joins: Vec<FromJoin>Trait Implementations§
Source§impl Clone for FromClause
impl Clone for FromClause
Source§fn clone(&self) -> FromClause
fn clone(&self) -> FromClause
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FromClause
impl Debug for FromClause
Source§impl Display for FromClause
impl Display for FromClause
Source§impl PartialEq for FromClause
impl PartialEq for FromClause
Source§fn eq(&self, other: &FromClause) -> bool
fn eq(&self, other: &FromClause) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FromClause
Auto Trait Implementations§
impl Freeze for FromClause
impl RefUnwindSafe for FromClause
impl Send for FromClause
impl Sync for FromClause
impl Unpin for FromClause
impl UnsafeUnpin for FromClause
impl UnwindSafe for FromClause
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