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

pub struct MutateRowRequest {
    pub table_name: String,
    pub row_key: Vec<u8>,
    pub mutations: Vec<Mutation>,
}

Request message for BigtableService.MutateRow.

Fields

table_name: String

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

row_key: Vec<u8>

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

mutations: Vec<Mutation>

Changes to be atomically applied to the specified row. Entries are applied in order, meaning that earlier mutations can be masked by later ones. Must contain at least one entry and at most 100000.

Trait Implementations

impl Clone for MutateRowRequest[src]

impl Debug for MutateRowRequest[src]

impl Default for MutateRowRequest[src]

impl Message for MutateRowRequest[src]

impl PartialEq<MutateRowRequest> for MutateRowRequest[src]

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