[][src]Struct google_bigtableadmin2::Table

pub struct Table {
    pub cluster_states: Option<HashMap<String, ClusterState>>,
    pub column_families: Option<HashMap<String, ColumnFamily>>,
    pub name: Option<String>,
    pub granularity: Option<String>,
}

A collection of user data indexed by row, column, and timestamp. Each table is served using the resources of its parent cluster.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

cluster_states: Option<HashMap<String, ClusterState>>

Output only. Map from cluster ID to per-cluster table state. If it could not be determined whether or not the table has data in a particular cluster (for example, if its zone is unavailable), then there will be an entry for the cluster with UNKNOWN replication_status. Views: REPLICATION_VIEW, FULL

column_families: Option<HashMap<String, ColumnFamily>>

(CreationOnly) The column families configured for this table, mapped by column family ID. Views: SCHEMA_VIEW, FULL

name: Option<String>

Output only. The unique name of the table. Values are of the form projects/<project>/instances/<instance>/tables/_a-zA-Z0-9*. Views: NAME_ONLY, SCHEMA_VIEW, REPLICATION_VIEW, FULL

granularity: Option<String>

(CreationOnly) The granularity (i.e. MILLIS) at which timestamps are stored in this table. Timestamps not matching the granularity will be rejected. If unspecified at creation time, the value will be set to MILLIS. Views: SCHEMA_VIEW, FULL.

Trait Implementations

impl ResponseResult for Table[src]

impl Default for Table[src]

impl Clone for Table[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Table[src]

impl Serialize for Table[src]

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

Auto Trait Implementations

impl Send for Table

impl Unpin for Table

impl Sync for Table

impl UnwindSafe for Table

impl RefUnwindSafe for Table

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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