Struct barrel::table::TableMeta

source ·
pub struct TableMeta {
    pub name: String,
    pub has_id: bool,
    pub encoding: String,
}
Expand description

Some metadata about a table that was just created

Fields

name: Stringhas_id: boolencoding: String

Implementations

Create a new tablemeta with default values

Return a clone of the table name

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

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

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Convert self to an expression for Diesel’s query builder. Read more
Convert &self to an expression for Diesel’s query builder. Read more
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.