Struct barrel::table::TableMeta [] [src]

pub struct TableMeta { /* fields omitted */ }

Some metadata about a table that was just created

Methods

impl TableMeta
[src]

[src]

Create a new tablemeta with default values

[src]

Return a clone of the table name

[src]

Disable the auto-key feature

A table is by default created with an auto-incrementing primary key called "id". You can disable this feature here. If you do and still want a priamry key, you will have to specify it yourself in the table init closure

[src]

Specify an encoding for this table which might vary from the main encoding of your database

Trait Implementations

impl Clone for TableMeta
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for TableMeta

impl Sync for TableMeta