Enum tikv::storage::txn::ProcessResult[][src]

pub enum ProcessResult {
    Res,
    MultiRes {
        results: Vec<StorageResult<()>>,
    },
    PrewriteResult {
        result: PrewriteResult,
    },
    MvccKey {
        mvcc: MvccInfo,
    },
    MvccStartTs {
        mvcc: Option<(Key, MvccInfo)>,
    },
    Locks {
        locks: Vec<LockInfo>,
    },
    TxnStatus {
        txn_status: TxnStatus,
    },
    NextCommand {
        cmd: Command,
    },
    Failed {
        err: StorageError,
    },
    PessimisticLockRes {
        res: StorageResult<PessimisticLockRes>,
    },
    SecondaryLocksStatus {
        status: SecondaryLocksStatus,
    },
    RawCompareAndSwapRes {
        previous_value: Option<Value>,
        succeed: bool,
    },
}

Process result of a command.

Variants

Res
MultiRes

Fields of MultiRes

results: Vec<StorageResult<()>>
PrewriteResult

Fields of PrewriteResult

result: PrewriteResult
MvccKey

Fields of MvccKey

mvcc: MvccInfo
MvccStartTs

Fields of MvccStartTs

mvcc: Option<(Key, MvccInfo)>
Locks

Fields of Locks

locks: Vec<LockInfo>
TxnStatus

Fields of TxnStatus

txn_status: TxnStatus
NextCommand

Fields of NextCommand

cmd: Command
Failed

Fields of Failed

err: StorageError
PessimisticLockRes

Fields of PessimisticLockRes

res: StorageResult<PessimisticLockRes>
SecondaryLocksStatus

Fields of SecondaryLocksStatus

status: SecondaryLocksStatus
RawCompareAndSwapRes

Fields of RawCompareAndSwapRes

previous_value: Option<Value>succeed: bool

Implementations

impl ProcessResult[src]

pub fn maybe_clone(&self) -> Option<ProcessResult>[src]

Trait Implementations

impl Debug for ProcessResult[src]

Auto Trait Implementations

impl !RefUnwindSafe for ProcessResult

impl Send for ProcessResult

impl Sync for ProcessResult

impl Unpin for ProcessResult

impl !UnwindSafe for ProcessResult

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<V, W> ConvertFrom<W> for V where
    W: ConvertTo<V>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T[src]

type Init = T

The type for initializers.

impl<T> Pointable for T[src]

type Init = T

The type for initializers.

impl<T> Same<T> for T[src]

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized
[src]

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]