Struct gapi_grpc::google::bigtable::v2::MutateRowRequest[][src]

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

Request message for Bigtable.MutateRow.

Fields

table_name: String

Required. The unique name of the table to which the mutation should be applied. Values are of the form projects/<project>/instances/<instance>/tables/<table>.

app_profile_id: String

This value specifies routing for replication. If not specified, the “default” application profile will be used.

row_key: Vec<u8>

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

mutations: Vec<Mutation>

Required. 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

impl RefUnwindSafe for MutateRowRequest

impl Send for MutateRowRequest

impl Sync for MutateRowRequest

impl Unpin for MutateRowRequest

impl UnwindSafe for MutateRowRequest

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]