Struct google_bigtableadmin2::api::ClusterState[][src]

pub struct ClusterState {
    pub encryption_info: Option<Vec<EncryptionInfo>>,
    pub replication_state: Option<String>,
}

The state of a table’s data in a particular cluster.

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

Fields

encryption_info: Option<Vec<EncryptionInfo>>

Output only. The encryption information for the table in this cluster. If the encryption key protecting this resource is customer managed, then its version can be rotated in Cloud Key Management Service (Cloud KMS). The primary version of the key and its status will be reflected here when changes propagate from Cloud KMS.

replication_state: Option<String>

Output only. The state of replication for the table in this cluster.

Trait Implementations

impl Clone for ClusterState[src]

impl Debug for ClusterState[src]

impl Default for ClusterState[src]

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

impl Part for ClusterState[src]

impl Serialize for ClusterState[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> Instrument 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.