Struct gcp_bigquery_client::model::bigtable_options::BigtableOptions
source · [−]pub struct BigtableOptions {
pub column_families: Option<Vec<BigtableColumnFamily>>,
pub ignore_unspecified_column_families: Option<bool>,
pub read_rowkey_as_string: Option<bool>,
}
Fields
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.
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.
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.
Trait Implementations
sourceimpl Clone for BigtableOptions
impl Clone for BigtableOptions
sourcefn clone(&self) -> BigtableOptions
fn clone(&self) -> BigtableOptions
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for BigtableOptions
impl Debug for BigtableOptions
sourceimpl Default for BigtableOptions
impl Default for BigtableOptions
sourcefn default() -> BigtableOptions
fn default() -> BigtableOptions
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for BigtableOptions
impl<'de> Deserialize<'de> for BigtableOptions
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Serialize for BigtableOptions
impl Serialize for BigtableOptions
Auto Trait Implementations
impl RefUnwindSafe for BigtableOptions
impl Send for BigtableOptions
impl Sync for BigtableOptions
impl Unpin for BigtableOptions
impl UnwindSafe for BigtableOptions
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more