[][src]Struct gcp_client::google::bigtable::v2::ReadModifyWriteRule

pub struct ReadModifyWriteRule {
    pub family_name: String,
    pub column_qualifier: Vec<u8>,
    pub rule: Option<Rule>,
}

Specifies an atomic read/modify/write operation on the latest value of the specified column.

Fields

family_name: String

The name of the family to which the read/modify/write should be applied. Must match [-_.a-zA-Z0-9]+

column_qualifier: Vec<u8>

The qualifier of the column to which the read/modify/write should be applied. Can be any byte string, including the empty string.

rule: Option<Rule>

The rule used to determine the column's new latest value from its current latest value.

Trait Implementations

impl Clone for ReadModifyWriteRule[src]

impl Debug for ReadModifyWriteRule[src]

impl Default for ReadModifyWriteRule[src]

impl Message for ReadModifyWriteRule[src]

impl PartialEq<ReadModifyWriteRule> for ReadModifyWriteRule[src]

impl StructuralPartialEq for ReadModifyWriteRule[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> 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> 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>, 

impl<T> WithSubscriber for T[src]