Enum sea_query::types::TableRef[][src]

pub enum TableRef {
    Table(Rc<dyn Iden>),
    SchemaTable(Rc<dyn Iden>, Rc<dyn Iden>),
    TableAlias(Rc<dyn Iden>, Rc<dyn Iden>),
    SchemaTableAlias(Rc<dyn Iden>, Rc<dyn Iden>, Rc<dyn Iden>),
    SubQuery(SelectStatementRc<dyn Iden>),
}

Table references

Variants

Table(Rc<dyn Iden>)
SchemaTable(Rc<dyn Iden>, Rc<dyn Iden>)
TableAlias(Rc<dyn Iden>, Rc<dyn Iden>)
SchemaTableAlias(Rc<dyn Iden>, Rc<dyn Iden>, Rc<dyn Iden>)
SubQuery(SelectStatementRc<dyn Iden>)

Implementations

impl TableRef[src]

pub fn alias<A: 'static>(self, alias: A) -> Self where
    A: IntoIden
[src]

Trait Implementations

impl Clone for TableRef[src]

impl Debug for TableRef[src]

Auto Trait Implementations

impl !RefUnwindSafe for TableRef

impl !Send for TableRef

impl !Sync for TableRef

impl Unpin for TableRef

impl !UnwindSafe for TableRef

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,