[][src]Struct google_bigquery2::BigtableOptions

pub struct BigtableOptions {
    pub read_rowkey_as_string: Option<bool>,
    pub ignore_unspecified_column_families: Option<bool>,
    pub column_families: Option<Vec<BigtableColumnFamily>>,
}

There is no detailed description.

This type is not used in any activity, and only used as part of another schema.

Fields

read_rowkey_as_string: Option<bool>

[Optional] If field is true, then the rowkey column families will be read and converted to string. Otherwise they are read with BYTES type values and users need to manually cast them with CAST if necessary. The default value is false.

ignore_unspecified_column_families: Option<bool>

[Optional] If field is true, then the column families that are not specified in columnFamilies list are not exposed in the table schema. Otherwise, they are read with BYTES type values. The default value is false.

column_families: Option<Vec<BigtableColumnFamily>>

[Optional] List of column families to expose in the table schema along with their types. This list restricts the column families that can be referenced in queries and specifies their value types. You can use this list to do type conversions - see the 'type' field for more details. If you leave this list empty, all column families are present in the table schema and their values are read as BYTES. During a query only the column families referenced in that query are read from Bigtable.

Trait Implementations

impl Clone for BigtableOptions[src]

impl Debug for BigtableOptions[src]

impl Default for BigtableOptions[src]

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

impl Part for BigtableOptions[src]

impl Serialize for BigtableOptions[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, U> Into<U> for T where
    U: From<T>, 
[src]

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.

impl<T> Typeable for T where
    T: Any