Struct kvproto::kvrpcpb::PessimisticRollbackRequest[][src]

pub struct PessimisticRollbackRequest {
    pub context: SingularPtrField<Context>,
    pub start_version: u64,
    pub for_update_ts: u64,
    pub keys: RepeatedField<Vec<u8>>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

context: SingularPtrField<Context>start_version: u64for_update_ts: u64keys: RepeatedField<Vec<u8>>unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl PessimisticRollbackRequest[src]

pub fn new() -> PessimisticRollbackRequest[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_version(&self) -> u64[src]

pub fn clear_start_version(&mut self)[src]

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

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

pub fn clear_for_update_ts(&mut self)[src]

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

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

pub fn clear_keys(&mut self)[src]

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

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

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

Trait Implementations

impl Clear for PessimisticRollbackRequest[src]

impl Clone for PessimisticRollbackRequest[src]

impl Debug for PessimisticRollbackRequest[src]

impl Default for PessimisticRollbackRequest[src]

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

impl Message for PessimisticRollbackRequest[src]

impl PartialEq<PessimisticRollbackRequest> for PessimisticRollbackRequest[src]

impl PbPrint for PessimisticRollbackRequest[src]

impl ProtobufValue for PessimisticRollbackRequest[src]

impl StructuralPartialEq for PessimisticRollbackRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for PessimisticRollbackRequest

impl Send for PessimisticRollbackRequest

impl Sync for PessimisticRollbackRequest

impl Unpin for PessimisticRollbackRequest

impl UnwindSafe for PessimisticRollbackRequest

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.