[][src]Trait bigtable::method::BigTable

pub trait BigTable {
    type M: Message;
    fn payload(&self) -> &Self::M;
fn payload_mut(&mut self) -> &mut Self::M;
fn set_payload(&mut self, payload: Self::M);
fn url_method(&self) -> &str;
fn is_post(&self) -> bool; }

Associated Types

type M: Message

Loading content...

Required methods

fn payload(&self) -> &Self::M

fn payload_mut(&mut self) -> &mut Self::M

fn set_payload(&mut self, payload: Self::M)

fn url_method(&self) -> &str

fn is_post(&self) -> bool

Loading content...

Implementors

impl BigTable for CheckAndMutateRow[src]

type M = CheckAndMutateRowRequest

impl BigTable for MutateRow[src]

type M = MutateRowRequest

impl BigTable for MutateRows[src]

type M = MutateRowsRequest

impl BigTable for ReadModifyWriteRow[src]

type M = ReadModifyWriteRowRequest

impl BigTable for ReadRows[src]

type M = ReadRowsRequest

impl BigTable for SampleRowKeys[src]

type M = SampleRowKeysRequest

Loading content...