Struct kvproto::kvrpcpb::CommitResponse[][src]

pub struct CommitResponse {
    pub region_error: SingularPtrField<Error>,
    pub error: SingularPtrField<KeyError>,
    pub commit_version: u64,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

region_error: SingularPtrField<Error>error: SingularPtrField<KeyError>commit_version: u64unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl CommitResponse[src]

pub fn new() -> CommitResponse[src]

pub fn get_region_error(&self) -> &Error[src]

pub fn clear_region_error(&mut self)[src]

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

pub fn set_region_error(&mut self, v: Error)[src]

pub fn mut_region_error(&mut self) -> &mut Error[src]

pub fn take_region_error(&mut self) -> Error[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_commit_version(&self) -> u64[src]

pub fn clear_commit_version(&mut self)[src]

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

Trait Implementations

impl Clear for CommitResponse[src]

impl Clone for CommitResponse[src]

impl Debug for CommitResponse[src]

impl Default for CommitResponse[src]

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

impl Message for CommitResponse[src]

impl PartialEq<CommitResponse> for CommitResponse[src]

impl PbPrint for CommitResponse[src]

impl ProtobufValue for CommitResponse[src]

impl StructuralPartialEq for CommitResponse[src]

Auto Trait Implementations

impl RefUnwindSafe for CommitResponse

impl Send for CommitResponse

impl Sync for CommitResponse

impl Unpin for CommitResponse

impl UnwindSafe for CommitResponse

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.