Struct sqlite_loadable::vtab_argparse::ColumnDeclaration
source · 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: StringName of declared column
declared_type: Option<String>§constraints: Option<String>Implementations§
source§impl ColumnDeclaration
impl ColumnDeclaration
sourcepub fn affinity(&self) -> ColumnAffinity
pub fn affinity(&self) -> ColumnAffinity
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.
sourcepub fn vtab_declaration(&self) -> String
pub fn vtab_declaration(&self) -> String
Formats the column declaration into a way that a CREATE TABLE statement expects (“escaping” the column name).
Trait Implementations§
source§impl Clone for ColumnDeclaration
impl Clone for ColumnDeclaration
source§fn clone(&self) -> ColumnDeclaration
fn clone(&self) -> ColumnDeclaration
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for ColumnDeclaration
impl Debug for ColumnDeclaration
source§impl PartialEq<ColumnDeclaration> for ColumnDeclaration
impl PartialEq<ColumnDeclaration> for ColumnDeclaration
source§fn eq(&self, other: &ColumnDeclaration) -> bool
fn eq(&self, other: &ColumnDeclaration) -> bool
This method tests for
self and other values to be equal, and is used
by ==.