Struct kvproto::debugpb::ScanMvccRequest[][src]

pub struct ScanMvccRequest {
    pub from_key: Vec<u8>,
    pub to_key: Vec<u8>,
    pub limit: u64,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

from_key: Vec<u8>to_key: Vec<u8>limit: u64unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl ScanMvccRequest[src]

pub fn new() -> ScanMvccRequest[src]

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

pub fn clear_from_key(&mut self)[src]

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

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

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

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

pub fn clear_to_key(&mut self)[src]

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

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

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

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

pub fn clear_limit(&mut self)[src]

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

Trait Implementations

impl Clear for ScanMvccRequest[src]

impl Clone for ScanMvccRequest[src]

impl Debug for ScanMvccRequest[src]

impl Default for ScanMvccRequest[src]

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

impl Message for ScanMvccRequest[src]

impl PartialEq<ScanMvccRequest> for ScanMvccRequest[src]

impl PbPrint for ScanMvccRequest[src]

impl ProtobufValue for ScanMvccRequest[src]

impl StructuralPartialEq for ScanMvccRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ScanMvccRequest

impl Send for ScanMvccRequest

impl Sync for ScanMvccRequest

impl Unpin for ScanMvccRequest

impl UnwindSafe for ScanMvccRequest

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.