Struct kvproto::cdcpb::TxnStatus[][src]

pub struct TxnStatus {
    pub start_ts: u64,
    pub min_commit_ts: u64,
    pub commit_ts: u64,
    pub is_rolled_back: bool,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

start_ts: u64min_commit_ts: u64commit_ts: u64is_rolled_back: boolunknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl TxnStatus[src]

pub fn new() -> TxnStatus[src]

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

pub fn clear_start_ts(&mut self)[src]

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

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

pub fn clear_min_commit_ts(&mut self)[src]

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

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

pub fn clear_commit_ts(&mut self)[src]

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

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

pub fn clear_is_rolled_back(&mut self)[src]

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

Trait Implementations

impl Clear for TxnStatus[src]

impl Clone for TxnStatus[src]

impl Debug for TxnStatus[src]

impl Default for TxnStatus[src]

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

impl Message for TxnStatus[src]

impl PartialEq<TxnStatus> for TxnStatus[src]

impl PbPrint for TxnStatus[src]

impl ProtobufValue for TxnStatus[src]

impl StructuralPartialEq for TxnStatus[src]

Auto Trait Implementations

impl RefUnwindSafe for TxnStatus

impl Send for TxnStatus

impl Sync for TxnStatus

impl Unpin for TxnStatus

impl UnwindSafe for TxnStatus

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.