Struct dbml_rs::ast::table::TableColumn
source · pub struct TableColumn {
pub span_range: Range<usize>,
pub name: String,
pub type: ColumnType,
pub settings: ColumnSettings,
}Fields§
§span_range: Range<usize>§name: String§type: ColumnType§settings: ColumnSettingsTrait Implementations§
source§impl Clone for TableColumn
impl Clone for TableColumn
source§fn clone(&self) -> TableColumn
fn clone(&self) -> TableColumn
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 TableColumn
impl Debug for TableColumn
source§impl Default for TableColumn
impl Default for TableColumn
source§fn default() -> TableColumn
fn default() -> TableColumn
Returns the “default value” for a type. Read more
source§impl PartialEq<TableColumn> for TableColumn
impl PartialEq<TableColumn> for TableColumn
source§fn eq(&self, other: &TableColumn) -> bool
fn eq(&self, other: &TableColumn) -> bool
This method tests for
self and other values to be equal, and is used
by ==.