Struct google_bigquery2::BigtableColumnFamily
source · pub struct BigtableColumnFamily {
pub encoding: Option<String>,
pub type_: Option<String>,
pub only_read_latest: Option<bool>,
pub columns: Option<Vec<BigtableColumn>>,
pub family_id: Option<String>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§encoding: Option<String>[Optional] The encoding of the values when the type is not STRING. Acceptable encoding values are: TEXT - indicates values are alphanumeric text strings. BINARY - indicates values are encoded using HBase Bytes.toBytes family of functions. This can be overridden for a specific column by listing that column in ‘columns’ and specifying an encoding for it.
type_: Option<String>[Optional] The type to convert the value in cells of this column family. The values are expected to be encoded using HBase Bytes.toBytes function when using the BINARY encoding value. Following BigQuery types are allowed (case-sensitive) - BYTES STRING INTEGER FLOAT BOOLEAN Default type is BYTES. This can be overridden for a specific column by listing that column in ‘columns’ and specifying a type for it.
only_read_latest: Option<bool>[Optional] If this is set only the latest version of value are exposed for all columns in this column family. This can be overridden for a specific column by listing that column in ‘columns’ and specifying a different setting for that column.
columns: Option<Vec<BigtableColumn>>[Optional] Lists of columns that should be exposed as individual fields as opposed to a list of (column name, value) pairs. All columns whose qualifier matches a qualifier in this list can be accessed as .. Other columns can be accessed as a list through .Column field.
family_id: Option<String>Identifier of the column family.
Trait Implementations§
source§impl Clone for BigtableColumnFamily
impl Clone for BigtableColumnFamily
source§fn clone(&self) -> BigtableColumnFamily
fn clone(&self) -> BigtableColumnFamily
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for BigtableColumnFamily
impl Debug for BigtableColumnFamily
source§impl Default for BigtableColumnFamily
impl Default for BigtableColumnFamily
source§fn default() -> BigtableColumnFamily
fn default() -> BigtableColumnFamily
source§impl<'de> Deserialize<'de> for BigtableColumnFamily
impl<'de> Deserialize<'de> for BigtableColumnFamily
source§fn 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>,
source§impl Serialize for BigtableColumnFamily
impl Serialize for BigtableColumnFamily
impl Part for BigtableColumnFamily
Auto Trait Implementations§
impl Freeze for BigtableColumnFamily
impl RefUnwindSafe for BigtableColumnFamily
impl Send for BigtableColumnFamily
impl Sync for BigtableColumnFamily
impl Unpin for BigtableColumnFamily
impl UnwindSafe for BigtableColumnFamily
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more