Struct kvproto::kvrpcpb::ScanRequest[][src]

pub struct ScanRequest {
    pub context: SingularPtrField<Context>,
    pub start_key: Vec<u8>,
    pub limit: u32,
    pub version: u64,
    pub key_only: bool,
    pub reverse: bool,
    pub end_key: Vec<u8>,
    pub sample_step: u32,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

context: SingularPtrField<Context>start_key: Vec<u8>limit: u32version: u64key_only: boolreverse: boolend_key: Vec<u8>sample_step: u32unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl ScanRequest[src]

pub fn new() -> ScanRequest[src]

pub fn get_context(&self) -> &Context[src]

pub fn clear_context(&mut self)[src]

pub fn has_context(&self) -> bool[src]

pub fn set_context(&mut self, v: Context)[src]

pub fn mut_context(&mut self) -> &mut Context[src]

pub fn take_context(&mut self) -> Context[src]

pub fn get_start_key(&self) -> &[u8][src]

pub fn clear_start_key(&mut self)[src]

pub fn set_start_key(&mut self, v: Vec<u8>)[src]

pub fn mut_start_key(&mut self) -> &mut Vec<u8>[src]

pub fn take_start_key(&mut self) -> Vec<u8>[src]

pub fn get_limit(&self) -> u32[src]

pub fn clear_limit(&mut self)[src]

pub fn set_limit(&mut self, v: u32)[src]

pub fn get_version(&self) -> u64[src]

pub fn clear_version(&mut self)[src]

pub fn set_version(&mut self, v: u64)[src]

pub fn get_key_only(&self) -> bool[src]

pub fn clear_key_only(&mut self)[src]

pub fn set_key_only(&mut self, v: bool)[src]

pub fn get_reverse(&self) -> bool[src]

pub fn clear_reverse(&mut self)[src]

pub fn set_reverse(&mut self, v: bool)[src]

pub fn get_end_key(&self) -> &[u8][src]

pub fn clear_end_key(&mut self)[src]

pub fn set_end_key(&mut self, v: Vec<u8>)[src]

pub fn mut_end_key(&mut self) -> &mut Vec<u8>[src]

pub fn take_end_key(&mut self) -> Vec<u8>[src]

pub fn get_sample_step(&self) -> u32[src]

pub fn clear_sample_step(&mut self)[src]

pub fn set_sample_step(&mut self, v: u32)[src]

Trait Implementations

impl Clear for ScanRequest[src]

impl Clone for ScanRequest[src]

impl Debug for ScanRequest[src]

impl Default for ScanRequest[src]

impl<'a> Default for &'a ScanRequest[src]

impl Message for ScanRequest[src]

impl PartialEq<ScanRequest> for ScanRequest[src]

impl PbPrint for ScanRequest[src]

impl ProtobufValue for ScanRequest[src]

impl StructuralPartialEq for ScanRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ScanRequest

impl Send for ScanRequest

impl Sync for ScanRequest

impl Unpin for ScanRequest

impl UnwindSafe for ScanRequest

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, U> Into<U> for T where
    U: From<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.