[][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 Clone for ColumnInfo[src]

impl Debug for ColumnInfo[src]

impl Default for ColumnInfo[src]

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

impl PartialEq<ColumnInfo> for ColumnInfo[src]

impl StructuralPartialEq for ColumnInfo[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.