Enum tikv_client::Error

source ·
pub enum Error {
Show 32 variants Unimplemented, DuplicateKeyInsertion, ResolveLockError, InvalidTransactionType, OperationAfterCommitError, OnePcFailure, NoPrimaryKey, UnsupportedMode, NoCurrentRegions, EntryNotFoundInRegionCache, Io(Error), Channel(RecvError), Grpc(Error), GrpcAPI(Status), Url(InvalidUri), Canceled(Canceled), RegionError(Box<Error>), UndeterminedError(Box<Error>), KeyError(Box<KeyError>), ExtractedErrors(Vec<Error>), MultipleKeyErrors(Vec<Error>), ColumnFamilyError(String), JoinError(JoinError), RegionForKeyNotFound { key: Vec<u8>, }, RegionNotFoundInResponse { region_id: u64, }, LeaderNotFound { region_id: u64, }, MaxScanLimitExceeded { limit: u32, max_limit: u32, }, InvalidSemver(Error), KvError { message: String, }, InternalError { message: String, }, StringError(String), PessimisticLockError { inner: Box<Error>, success_keys: Vec<Vec<u8>>, },
}
Expand description

An error originating from the TiKV client or dependencies.

Variants§

§

Unimplemented

Feature is not implemented.

§

DuplicateKeyInsertion

Duplicate key insertion happens.

§

ResolveLockError

Failed to resolve a lock

§

InvalidTransactionType

Will raise this error when using a pessimistic txn only operation on an optimistic txn

§

OperationAfterCommitError

It’s not allowed to perform operations in a transaction after it has been committed or rolled back.

§

OnePcFailure

We tried to use 1pc for a transaction, but it didn’t work. Probably should have used 2pc.

§

NoPrimaryKey

An operation requires a primary key, but the transaction was empty.

§

UnsupportedMode

For raw client, operation is not supported in atomic/non-atomic mode.

§

NoCurrentRegions

§

EntryNotFoundInRegionCache

§

Io(Error)

Wraps a std::io::Error.

§

Channel(RecvError)

Wraps a std::io::Error.

§

Grpc(Error)

Wraps a grpcio::Error.

§

GrpcAPI(Status)

Wraps a grpcio::Error.

§

Url(InvalidUri)

Wraps a grpcio::Error.

§

Canceled(Canceled)

Represents that a futures oneshot channel was cancelled.

§

RegionError(Box<Error>)

Errors caused by changes of region information

§

UndeterminedError(Box<Error>)

Whether the transaction is committed or not is undetermined

§

KeyError(Box<KeyError>)

Wraps crate::proto::kvrpcpb::KeyError

§

ExtractedErrors(Vec<Error>)

Multiple errors generated from the ExtractError plan.

§

MultipleKeyErrors(Vec<Error>)

Multiple key errors

§

ColumnFamilyError(String)

Invalid ColumnFamily

§

JoinError(JoinError)

Can’t join tokio tasks

§

RegionForKeyNotFound

Fields

§key: Vec<u8>

No region is found for the given key.

§

RegionNotFoundInResponse

Fields

§region_id: u64

No region is found for the given id. note: distinguish it with the RegionNotFound error in errorpb.

§

LeaderNotFound

Fields

§region_id: u64

No leader is found for the given id.

§

MaxScanLimitExceeded

Fields

§limit: u32
§max_limit: u32

Scan limit exceeds the maximum

§

InvalidSemver(Error)

§

KvError

Fields

§message: String

A string error returned by TiKV server

§

InternalError

Fields

§message: String
§

StringError(String)

§

PessimisticLockError

Fields

§inner: Box<Error>
§success_keys: Vec<Vec<u8>>

Trait Implementations§

source§

impl Debug for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Error

source§

fn fmt(&self, __formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for Error

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<Canceled> for Error

source§

fn from(source: Canceled) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(source: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(source: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(source: Error) -> Self

Converts to this type from the input type.
source§

impl From<InvalidUri> for Error

source§

fn from(source: InvalidUri) -> Self

Converts to this type from the input type.
source§

impl From<JoinError> for Error

source§

fn from(source: JoinError) -> Self

Converts to this type from the input type.
source§

impl From<RecvError> for Error

source§

fn from(source: RecvError) -> Self

Converts to this type from the input type.
source§

impl From<Status> for Error

source§

fn from(source: Status) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl !UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoRequest<T> for T

source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
source§

impl<E> Provider for Ewhere E: Error + ?Sized,

source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (provide_any)
Data providers should implement this method to provide all values they are able to provide by using demand. Read more
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more