[][src]Struct gcp_client::google::bigtable::v2::SampleRowKeysResponse

pub struct SampleRowKeysResponse {
    pub row_key: Vec<u8>,
    pub offset_bytes: i64,
}

Response message for Bigtable.SampleRowKeys.

Fields

row_key: Vec<u8>

Sorted streamed sequence of sample row keys in the table. The table might have contents before the first row key in the list and after the last one, but a key containing the empty string indicates "end of table" and will be the last response given, if present. Note that row keys in this list may not have ever been written to or read from, and users should therefore not make any assumptions about the row key structure that are specific to their use case.

offset_bytes: i64

Approximate total storage space used by all rows in the table which precede row_key. Buffering the contents of all rows between two subsequent samples would require space roughly equal to the difference in their offset_bytes fields.

Trait Implementations

impl Clone for SampleRowKeysResponse[src]

impl Debug for SampleRowKeysResponse[src]

impl Default for SampleRowKeysResponse[src]

impl Message for SampleRowKeysResponse[src]

impl PartialEq<SampleRowKeysResponse> for SampleRowKeysResponse[src]

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