Struct kvproto::errorpb::KeyNotInRegion[][src]

pub struct KeyNotInRegion {
    pub key: Vec<u8>,
    pub region_id: u64,
    pub start_key: Vec<u8>,
    pub end_key: Vec<u8>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

key: Vec<u8>region_id: u64start_key: Vec<u8>end_key: Vec<u8>unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl KeyNotInRegion[src]

pub fn new() -> KeyNotInRegion[src]

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

pub fn clear_key(&mut self)[src]

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

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

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

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

pub fn clear_region_id(&mut self)[src]

pub fn set_region_id(&mut self, v: u64)[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_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]

Trait Implementations

impl Clear for KeyNotInRegion[src]

impl Clone for KeyNotInRegion[src]

impl Debug for KeyNotInRegion[src]

impl Default for KeyNotInRegion[src]

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

impl Message for KeyNotInRegion[src]

impl PartialEq<KeyNotInRegion> for KeyNotInRegion[src]

impl PbPrint for KeyNotInRegion[src]

impl ProtobufValue for KeyNotInRegion[src]

impl StructuralPartialEq for KeyNotInRegion[src]

Auto Trait Implementations

impl RefUnwindSafe for KeyNotInRegion

impl Send for KeyNotInRegion

impl Sync for KeyNotInRegion

impl Unpin for KeyNotInRegion

impl UnwindSafe for KeyNotInRegion

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.