Struct rusoto_athena::ColumnInfo [] [src]

pub struct ColumnInfo {
    pub case_sensitive: Option<bool>,
    pub catalog_name: Option<String>,
    pub label: Option<String>,
    pub name: String,
    pub nullable: Option<String>,
    pub precision: Option<i64>,
    pub scale: Option<i64>,
    pub schema_name: Option<String>,
    pub table_name: Option<String>,
    pub type_: String,
}

Information about the columns in a query execution result.

Fields

Indicates whether values in the column are case-sensitive.

The catalog to which the query results belong.

A column label.

The name of the column.

Indicates the column's nullable status.

For DECIMAL data types, specifies the total number of digits, up to 38. For performance reasons, we recommend up to 18 digits.

For DECIMAL data types, specifies the total number of digits in the fractional part of the value. Defaults to 0.

The schema name (database name) to which the query results belong.

The table name for the query results.

The data type of the column.

Trait Implementations

impl Default for ColumnInfo
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for ColumnInfo
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ColumnInfo
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for ColumnInfo

impl Sync for ColumnInfo