Enum nom_sql::JoinRightSide [−][src]
pub enum JoinRightSide {
Table(Table),
Tables(Vec<Table>),
NestedSelect(Box<SelectStatement>, Option<String>),
NestedJoin(Box<JoinClause>),
}Variants
Table(Table)A single table.
Tables(Vec<Table>)A comma-separated (and implicitly joined) sequence of tables.
NestedSelect(Box<SelectStatement>, Option<String>)A nested selection, represented as (query, alias).
NestedJoin(Box<JoinClause>)A nested join clause.
Trait Implementations
impl Clone for JoinRightSide[src]
impl Clone for JoinRightSidefn clone(&self) -> JoinRightSide[src]
fn clone(&self) -> JoinRightSideReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Debug for JoinRightSide[src]
impl Debug for JoinRightSidefn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Eq for JoinRightSide[src]
impl Eq for JoinRightSideimpl Hash for JoinRightSide[src]
impl Hash for JoinRightSidefn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash<__H: Hasher>(&self, state: &mut __H)Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0
[src]Feeds a slice of this type into the given [Hasher]. Read more
impl PartialEq for JoinRightSide[src]
impl PartialEq for JoinRightSidefn eq(&self, other: &JoinRightSide) -> bool[src]
fn eq(&self, other: &JoinRightSide) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &JoinRightSide) -> bool[src]
fn ne(&self, other: &JoinRightSide) -> boolThis method tests for !=.
impl Display for JoinRightSide[src]
impl Display for JoinRightSideAuto Trait Implementations
impl Send for JoinRightSide
impl Send for JoinRightSideimpl Sync for JoinRightSide
impl Sync for JoinRightSide