[][src]Struct format_sql_query::ColumnSchema

pub struct ColumnSchema<'i, D: Dialect>(pub Column<'i>, pub ColumnType<D>);

Represents table column name.

Trait Implementations

impl<'i, D: Clone + Dialect> Clone for ColumnSchema<'i, D>[src]

impl<'i, D: Copy + Dialect> Copy for ColumnSchema<'i, D>[src]

impl<'i, D: Debug + Dialect> Debug for ColumnSchema<'i, D>[src]

impl<'_, D: Dialect> Display for ColumnSchema<'_, D>[src]

impl<'i, D, C> From<(C, ColumnType<D>)> for ColumnSchema<'i, D> where
    D: Dialect,
    C: Into<Column<'i>>, 
[src]

impl<'i, D: PartialEq + Dialect> PartialEq<ColumnSchema<'i, D>> for ColumnSchema<'i, D>[src]

impl<'i, D: Dialect> StructuralPartialEq for ColumnSchema<'i, D>[src]

Auto Trait Implementations

impl<'i, D> RefUnwindSafe for ColumnSchema<'i, D> where
    D: RefUnwindSafe

impl<'i, D> Send for ColumnSchema<'i, D> where
    D: Send

impl<'i, D> Sync for ColumnSchema<'i, D> where
    D: Sync

impl<'i, D> Unpin for ColumnSchema<'i, D> where
    D: Unpin

impl<'i, D> UnwindSafe for ColumnSchema<'i, D> where
    D: UnwindSafe

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.