pub struct ColumnDeclaration {
    pub name: String,
    pub declared_type: Option<String>,
    pub constraints: Option<String>,
}
Expand description

A column declaration that defines a single column. Example: "name text" would parse to a column with the name "name" and declared type of "text".

Fields§

§name: String

Name of declared column

§declared_type: Option<String>§constraints: Option<String>

Implementations§

Determines the column declaration’s “affinity”, based on the parsed declared type. Uses the same rules as https://www.sqlite.org/datatype3.html#determination_of_column_affinity.

Formats the column declaration into a way that a CREATE TABLE statement expects (“escaping” the column name).

Trait Implementations§

Formats the value using the given formatter. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. 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.

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.