Struct gapi_grpc::google::bigtable::admin::v2::app_profile::SingleClusterRouting[][src]

pub struct SingleClusterRouting {
    pub cluster_id: String,
    pub allow_transactional_writes: bool,
}

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

Fields

cluster_id: String

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

allow_transactional_writes: 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 Clone for SingleClusterRouting[src]

impl Debug for SingleClusterRouting[src]

impl Default for SingleClusterRouting[src]

impl Message for SingleClusterRouting[src]

impl PartialEq<SingleClusterRouting> for SingleClusterRouting[src]

impl StructuralPartialEq for SingleClusterRouting[src]

Auto Trait Implementations

impl RefUnwindSafe for SingleClusterRouting

impl Send for SingleClusterRouting

impl Sync for SingleClusterRouting

impl Unpin for SingleClusterRouting

impl UnwindSafe for SingleClusterRouting

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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]