[−][src]Struct rusoto_athena::ColumnInfo
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]
fn eq(&self, other: &ColumnInfo) -> bool
[src]
fn ne(&self, other: &ColumnInfo) -> bool
[src]
impl Default for ColumnInfo
[src]
fn default() -> ColumnInfo
[src]
impl Clone for ColumnInfo
[src]
fn clone(&self) -> 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]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for ColumnInfo
impl Sync for ColumnInfo
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self