[][src]Struct google_bigtableadmin2::SingleClusterRouting

pub struct SingleClusterRouting {
    pub cluster_id: Option<String>,
    pub allow_transactional_writes: Option<bool>,
}

Unconditionally routes all read/write requests to a specific cluster. This option preserves read-your-writes consistency, but does not improve availability.

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

Fields

cluster_id: Option<String>

The cluster to which read/write requests should be routed.

allow_transactional_writes: Option<bool>

Whether or not CheckAndMutateRow and ReadModifyWriteRow requests are allowed by this app profile. It is unsafe to send these requests to the same table/row/column in multiple clusters.

Trait Implementations

impl Part for SingleClusterRouting[src]

impl Default for SingleClusterRouting[src]

impl Clone for SingleClusterRouting[src]

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

Performs copy-assignment from source. Read more

impl Debug for SingleClusterRouting[src]

impl Serialize for SingleClusterRouting[src]

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

Auto Trait Implementations

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]