[][src]Struct rusoto_athena::ColumnInfo

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

case_sensitive: Option<bool>

Indicates whether values in the column are case-sensitive.

catalog_name: Option<String>

The catalog to which the query results belong.

label: Option<String>

A column label.

name: String

The name of the column.

nullable: Option<String>

Indicates the column's nullable status.

precision: Option<i64>

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

scale: Option<i64>

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

schema_name: Option<String>

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

table_name: Option<String>

The table name for the query results.

type_: String

The data type of the column.

Trait Implementations

impl PartialEq<ColumnInfo> for ColumnInfo[src]

impl Default for ColumnInfo[src]

impl Clone for ColumnInfo[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ColumnInfo[src]

impl<'de> Deserialize<'de> for ColumnInfo[src]

Auto Trait Implementations

impl Send for ColumnInfo

impl Sync for ColumnInfo

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self