Struct kvproto::kvrpcpb::KvPair[][src]

pub struct KvPair {
    pub error: SingularPtrField<KeyError>,
    pub key: Vec<u8>,
    pub value: Vec<u8>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

error: SingularPtrField<KeyError>key: Vec<u8>value: Vec<u8>unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl KvPair[src]

pub fn new() -> KvPair[src]

pub fn get_error(&self) -> &KeyError[src]

pub fn clear_error(&mut self)[src]

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

pub fn set_error(&mut self, v: KeyError)[src]

pub fn mut_error(&mut self) -> &mut KeyError[src]

pub fn take_error(&mut self) -> KeyError[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_value(&self) -> &[u8][src]

pub fn clear_value(&mut self)[src]

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

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

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

Trait Implementations

impl Clear for KvPair[src]

impl Clone for KvPair[src]

impl Debug for KvPair[src]

impl Default for KvPair[src]

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

impl Message for KvPair[src]

impl PartialEq<KvPair> for KvPair[src]

impl PbPrint for KvPair[src]

impl ProtobufValue for KvPair[src]

impl StructuralPartialEq for KvPair[src]

Auto Trait Implementations

impl RefUnwindSafe for KvPair

impl Send for KvPair

impl Sync for KvPair

impl Unpin for KvPair

impl UnwindSafe for KvPair

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.