Struct kvproto::import_kvpb::WriteEngineV3Request[][src]

pub struct WriteEngineV3Request {
    pub uuid: Vec<u8>,
    pub commit_ts: u64,
    pub pairs: RepeatedField<KvPair>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

uuid: Vec<u8>commit_ts: u64pairs: RepeatedField<KvPair>unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl WriteEngineV3Request[src]

pub fn new() -> WriteEngineV3Request[src]

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

pub fn clear_uuid(&mut self)[src]

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

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

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

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

pub fn clear_commit_ts(&mut self)[src]

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

pub fn get_pairs(&self) -> &[KvPair][src]

pub fn clear_pairs(&mut self)[src]

pub fn set_pairs(&mut self, v: RepeatedField<KvPair>)[src]

pub fn mut_pairs(&mut self) -> &mut RepeatedField<KvPair>[src]

pub fn take_pairs(&mut self) -> RepeatedField<KvPair>[src]

Trait Implementations

impl Clear for WriteEngineV3Request[src]

impl Clone for WriteEngineV3Request[src]

impl Debug for WriteEngineV3Request[src]

impl Default for WriteEngineV3Request[src]

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

impl Message for WriteEngineV3Request[src]

impl PartialEq<WriteEngineV3Request> for WriteEngineV3Request[src]

impl PbPrint for WriteEngineV3Request[src]

impl ProtobufValue for WriteEngineV3Request[src]

impl StructuralPartialEq for WriteEngineV3Request[src]

Auto Trait Implementations

impl RefUnwindSafe for WriteEngineV3Request

impl Send for WriteEngineV3Request

impl Sync for WriteEngineV3Request

impl Unpin for WriteEngineV3Request

impl UnwindSafe for WriteEngineV3Request

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.