[][src]Struct gcp_client::google::bigtable::v2::mutation::SetCell

pub struct SetCell {
    pub family_name: String,
    pub column_qualifier: Vec<u8>,
    pub timestamp_micros: i64,
    pub value: Vec<u8>,
}

A Mutation which sets the value of the specified cell.

Fields

family_name: String

The name of the family into which new data should be written. Must match [-_.a-zA-Z0-9]+

column_qualifier: Vec<u8>

The qualifier of the column into which new data should be written. Can be any byte string, including the empty string.

timestamp_micros: i64

The timestamp of the cell into which new data should be written. Use -1 for current Bigtable server time. Otherwise, the client should set this value itself, noting that the default value is a timestamp of zero if the field is left unspecified. Values must match the granularity of the table (e.g. micros, millis).

value: Vec<u8>

The value to be written into the specified cell.

Trait Implementations

impl Clone for SetCell[src]

impl Debug for SetCell[src]

impl Default for SetCell[src]

impl Message for SetCell[src]

impl PartialEq<SetCell> for SetCell[src]

impl StructuralPartialEq for SetCell[src]

Auto Trait Implementations

impl RefUnwindSafe for SetCell

impl Send for SetCell

impl Sync for SetCell

impl Unpin for SetCell

impl UnwindSafe for SetCell

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]