[][src]Struct rustorm::table::Table

pub struct Table {
    pub name: TableName,
    pub comment: Option<String>,
    pub columns: Vec<Column>,
    pub is_view: bool,
    pub table_key: Vec<TableKey>,
}

Fields

comment of this table

columns of this table

views can also be generated

Methods

impl Table
[src]

get the (local_columns, foreign_columns) to the table

return the local columns of this table that is referred by the argument table name

Trait Implementations

impl Clone for Table
[src]

Performs copy-assignment from source. Read more

impl PartialEq<Table> for Table
[src]

impl Debug for Table
[src]

Auto Trait Implementations

impl Send for Table

impl Sync for Table

Blanket Implementations

impl<T> From for T
[src]

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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