Struct kvproto::kvrpcpb::RawGetKeyTtlResponse[][src]

pub struct RawGetKeyTtlResponse {
    pub region_error: SingularPtrField<Error>,
    pub error: String,
    pub ttl: u64,
    pub not_found: bool,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

region_error: SingularPtrField<Error>error: Stringttl: u64not_found: boolunknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl RawGetKeyTtlResponse[src]

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

pub fn clear_ttl(&mut self)[src]

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

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

pub fn clear_not_found(&mut self)[src]

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

Trait Implementations

impl Clear for RawGetKeyTtlResponse[src]

impl Clone for RawGetKeyTtlResponse[src]

impl Debug for RawGetKeyTtlResponse[src]

impl Default for RawGetKeyTtlResponse[src]

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

impl Message for RawGetKeyTtlResponse[src]

impl PartialEq<RawGetKeyTtlResponse> for RawGetKeyTtlResponse[src]

impl PbPrint for RawGetKeyTtlResponse[src]

impl ProtobufValue for RawGetKeyTtlResponse[src]

impl StructuralPartialEq for RawGetKeyTtlResponse[src]

Auto Trait Implementations

impl RefUnwindSafe for RawGetKeyTtlResponse

impl Send for RawGetKeyTtlResponse

impl Sync for RawGetKeyTtlResponse

impl Unpin for RawGetKeyTtlResponse

impl UnwindSafe for RawGetKeyTtlResponse

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.