[][src]Struct gcp_client::google::bigtable::v1::mutation::DeleteFromColumn

pub struct DeleteFromColumn {
    pub family_name: String,
    pub column_qualifier: Vec<u8>,
    pub time_range: Option<TimestampRange>,
}

A Mutation which deletes cells from the specified column, optionally restricting the deletions to a given timestamp range.

Fields

family_name: String

The name of the family from which cells should be deleted. Must match [-_.a-zA-Z0-9]+

column_qualifier: Vec<u8>

The qualifier of the column from which cells should be deleted. Can be any byte string, including the empty string.

time_range: Option<TimestampRange>

The range of timestamps within which cells should be deleted.

Trait Implementations

impl Clone for DeleteFromColumn[src]

impl Debug for DeleteFromColumn[src]

impl Default for DeleteFromColumn[src]

impl Message for DeleteFromColumn[src]

impl PartialEq<DeleteFromColumn> for DeleteFromColumn[src]

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