Struct kvproto::kvrpcpb::RawCasResponse[][src]

pub struct RawCasResponse {
    pub region_error: SingularPtrField<Error>,
    pub error: String,
    pub succeed: bool,
    pub previous_not_exist: bool,
    pub previous_value: Vec<u8>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

region_error: SingularPtrField<Error>error: Stringsucceed: boolprevious_not_exist: boolprevious_value: Vec<u8>unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl RawCasResponse[src]

pub fn new() -> RawCasResponse[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) -> &str[src]

pub fn clear_error(&mut self)[src]

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

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

pub fn take_error(&mut self) -> String[src]

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

pub fn clear_succeed(&mut self)[src]

pub fn set_succeed(&mut self, v: bool)[src]

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

pub fn clear_previous_not_exist(&mut self)[src]

pub fn set_previous_not_exist(&mut self, v: bool)[src]

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

pub fn clear_previous_value(&mut self)[src]

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

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

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

Trait Implementations

impl Clear for RawCasResponse[src]

impl Clone for RawCasResponse[src]

impl Debug for RawCasResponse[src]

impl Default for RawCasResponse[src]

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

impl Message for RawCasResponse[src]

impl PartialEq<RawCasResponse> for RawCasResponse[src]

impl PbPrint for RawCasResponse[src]

impl ProtobufValue for RawCasResponse[src]

impl StructuralPartialEq for RawCasResponse[src]

Auto Trait Implementations

impl RefUnwindSafe for RawCasResponse

impl Send for RawCasResponse

impl Sync for RawCasResponse

impl Unpin for RawCasResponse

impl UnwindSafe for RawCasResponse

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.