[][src]Struct gcp_client::google::bigtable::v1::CheckAndMutateRowRequest

pub struct CheckAndMutateRowRequest {
    pub table_name: String,
    pub row_key: Vec<u8>,
    pub predicate_filter: Option<RowFilter>,
    pub true_mutations: Vec<Mutation>,
    pub false_mutations: Vec<Mutation>,
}

Request message for BigtableService.CheckAndMutateRowRequest

Fields

table_name: String

The unique name of the table to which the conditional mutation should be applied.

row_key: Vec<u8>

The key of the row to which the conditional mutation should be applied.

predicate_filter: Option<RowFilter>

The filter to be applied to the contents of the specified row. Depending on whether or not any results are yielded, either "true_mutations" or "false_mutations" will be executed. If unset, checks that the row contains any values at all.

true_mutations: Vec<Mutation>

Changes to be atomically applied to the specified row if "predicate_filter" yields at least one cell when applied to "row_key". Entries are applied in order, meaning that earlier mutations can be masked by later ones. Must contain at least one entry if "false_mutations" is empty, and at most 100000.

false_mutations: Vec<Mutation>

Changes to be atomically applied to the specified row if "predicate_filter" does not yield any cells when applied to "row_key". Entries are applied in order, meaning that earlier mutations can be masked by later ones. Must contain at least one entry if "true_mutations" is empty, and at most 100000.

Trait Implementations

impl Clone for CheckAndMutateRowRequest[src]

impl Debug for CheckAndMutateRowRequest[src]

impl Default for CheckAndMutateRowRequest[src]

impl Message for CheckAndMutateRowRequest[src]

impl PartialEq<CheckAndMutateRowRequest> for CheckAndMutateRowRequest[src]

impl StructuralPartialEq for CheckAndMutateRowRequest[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]