Struct odbc::ColumnDescriptor [] [src]

pub struct ColumnDescriptor {
    pub name: String,
    pub data_type: SqlDataType,
    pub column_size: Option<SQLULEN>,
    pub decimal_digits: Option<u16>,
    pub nullable: Option<bool>,
}

Fields

Trait Implementations

impl Debug for ColumnDescriptor
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ColumnDescriptor
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations