Struct kvproto::kvrpcpb::CheckTxnStatusResponse[][src]

pub struct CheckTxnStatusResponse {
    pub region_error: SingularPtrField<Error>,
    pub error: SingularPtrField<KeyError>,
    pub lock_ttl: u64,
    pub commit_version: u64,
    pub action: Action,
    pub lock_info: SingularPtrField<LockInfo>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

region_error: SingularPtrField<Error>error: SingularPtrField<KeyError>lock_ttl: u64commit_version: u64action: Actionlock_info: SingularPtrField<LockInfo>unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl CheckTxnStatusResponse[src]

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

pub fn clear_lock_ttl(&mut self)[src]

pub fn set_lock_ttl(&mut self, v: u64)[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]

pub fn get_action(&self) -> Action[src]

pub fn clear_action(&mut self)[src]

pub fn set_action(&mut self, v: Action)[src]

pub fn get_lock_info(&self) -> &LockInfo[src]

pub fn clear_lock_info(&mut self)[src]

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

pub fn set_lock_info(&mut self, v: LockInfo)[src]

pub fn mut_lock_info(&mut self) -> &mut LockInfo[src]

pub fn take_lock_info(&mut self) -> LockInfo[src]

Trait Implementations

impl Clear for CheckTxnStatusResponse[src]

impl Clone for CheckTxnStatusResponse[src]

impl Debug for CheckTxnStatusResponse[src]

impl Default for CheckTxnStatusResponse[src]

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

impl Message for CheckTxnStatusResponse[src]

impl PartialEq<CheckTxnStatusResponse> for CheckTxnStatusResponse[src]

impl PbPrint for CheckTxnStatusResponse[src]

impl ProtobufValue for CheckTxnStatusResponse[src]

impl StructuralPartialEq for CheckTxnStatusResponse[src]

Auto Trait Implementations

impl RefUnwindSafe for CheckTxnStatusResponse

impl Send for CheckTxnStatusResponse

impl Sync for CheckTxnStatusResponse

impl Unpin for CheckTxnStatusResponse

impl UnwindSafe for CheckTxnStatusResponse

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.