Enum tikv::storage::mvcc::ErrorInner[][src]

pub enum ErrorInner {
    Engine(Error),
    Io(Error),
    Codec(Error),
    KeyIsLocked(LockInfo),
    BadFormat(Error),
    Committed {
        start_ts: TimeStamp,
        commit_ts: TimeStamp,
        key: Vec<u8>,
    },
    PessimisticLockRolledBack {
        start_ts: TimeStamp,
        key: Vec<u8>,
    },
    TxnLockNotFound {
        start_ts: TimeStamp,
        commit_ts: TimeStamp,
        key: Vec<u8>,
    },
    TxnNotFound {
        start_ts: TimeStamp,
        key: Vec<u8>,
    },
    LockTypeNotMatch {
        start_ts: TimeStamp,
        key: Vec<u8>,
        pessimistic: bool,
    },
    WriteConflict {
        start_ts: TimeStamp,
        conflict_start_ts: TimeStamp,
        conflict_commit_ts: TimeStamp,
        key: Vec<u8>,
        primary: Vec<u8>,
    },
    Deadlock {
        start_ts: TimeStamp,
        lock_ts: TimeStamp,
        lock_key: Vec<u8>,
        deadlock_key_hash: u64,
        wait_chain: Vec<WaitForEntry>,
    },
    AlreadyExist {
        key: Vec<u8>,
    },
    DefaultNotFound {
        key: Vec<u8>,
    },
    CommitTsExpired {
        start_ts: TimeStamp,
        commit_ts: TimeStamp,
        key: Vec<u8>,
        min_commit_ts: TimeStamp,
    },
    KeyVersion,
    PessimisticLockNotFound {
        start_ts: TimeStamp,
        key: Vec<u8>,
    },
    CommitTsTooLarge {
        start_ts: TimeStamp,
        min_commit_ts: TimeStamp,
        max_commit_ts: TimeStamp,
    },
    Other(Box<dyn Error + Sync + Send>),
}

Variants

Engine(Error)
Io(Error)
Codec(Error)
KeyIsLocked(LockInfo)
BadFormat(Error)
Committed

Fields of Committed

start_ts: TimeStampcommit_ts: TimeStampkey: Vec<u8>
PessimisticLockRolledBack

Fields of PessimisticLockRolledBack

start_ts: TimeStampkey: Vec<u8>
TxnLockNotFound

Fields of TxnLockNotFound

start_ts: TimeStampcommit_ts: TimeStampkey: Vec<u8>
TxnNotFound

Fields of TxnNotFound

start_ts: TimeStampkey: Vec<u8>
LockTypeNotMatch

Fields of LockTypeNotMatch

start_ts: TimeStampkey: Vec<u8>pessimistic: bool
WriteConflict

Fields of WriteConflict

start_ts: TimeStampconflict_start_ts: TimeStampconflict_commit_ts: TimeStampkey: Vec<u8>primary: Vec<u8>
Deadlock

Fields of Deadlock

start_ts: TimeStamplock_ts: TimeStamplock_key: Vec<u8>deadlock_key_hash: u64wait_chain: Vec<WaitForEntry>
AlreadyExist

Fields of AlreadyExist

key: Vec<u8>
DefaultNotFound

Fields of DefaultNotFound

key: Vec<u8>
CommitTsExpired

Fields of CommitTsExpired

start_ts: TimeStampcommit_ts: TimeStampkey: Vec<u8>min_commit_ts: TimeStamp
KeyVersion
PessimisticLockNotFound

Fields of PessimisticLockNotFound

start_ts: TimeStampkey: Vec<u8>
CommitTsTooLarge

Fields of CommitTsTooLarge

start_ts: TimeStampmin_commit_ts: TimeStampmax_commit_ts: TimeStamp
Other(Box<dyn Error + Sync + Send>)

Implementations

impl ErrorInner[src]

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

Trait Implementations

impl Debug for ErrorInner[src]

impl Display for ErrorInner[src]

impl Error for ErrorInner[src]

impl From<Box<dyn Error + 'static + Sync + Send, Global>> for ErrorInner[src]

impl From<Error> for ErrorInner[src]

impl From<Error> for ErrorInner[src]

impl From<Error> for ErrorInner[src]

impl From<Error> for ErrorInner[src]

impl From<Error> for ErrorInner[src]

impl From<Error> for ErrorInner[src]

impl From<ErrorInner> for Error[src]

Auto Trait Implementations

impl !RefUnwindSafe for ErrorInner

impl Send for ErrorInner

impl Sync for ErrorInner

impl Unpin for ErrorInner

impl !UnwindSafe for ErrorInner

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> ToString for T where
    T: Display + ?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]