Enum scylla::transport::errors::QueryError

source ·
#[non_exhaustive]
pub enum QueryError {
Show 16 variants DbError(DbError, String), BadQuery(BadQuery), CqlRequestSerialization(CqlRequestSerializationError), BodyExtensionsParseError(FrameBodyExtensionsParseError), EmptyPlan, CqlResultParseError(CqlResultParseError), CqlErrorParseError(CqlErrorParseError), MetadataError(MetadataError), ConnectionPoolError(ConnectionPoolError), ProtocolError(ProtocolError), TimeoutError, BrokenConnection(BrokenConnectionError), UnableToAllocStreamId, RequestTimeout(String), NextRowError(NextRowError), IntoLegacyQueryResultError(IntoLegacyQueryResultError),
}
Expand description

Error that occurred during query execution

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

DbError(DbError, String)

Database sent a response containing some error with a message

§

BadQuery(BadQuery)

Caller passed an invalid query

§

CqlRequestSerialization(CqlRequestSerializationError)

Failed to serialize CQL request.

§

BodyExtensionsParseError(FrameBodyExtensionsParseError)

Failed to deserialize frame body extensions.

§

EmptyPlan

Load balancing policy returned an empty plan.

§

CqlResultParseError(CqlResultParseError)

Received a RESULT server response, but failed to deserialize it.

§

CqlErrorParseError(CqlErrorParseError)

Received an ERROR server response, but failed to deserialize it.

§

MetadataError(MetadataError)

A metadata error occurred during schema agreement.

§

ConnectionPoolError(ConnectionPoolError)

Selected node’s connection pool is in invalid state.

§

ProtocolError(ProtocolError)

Protocol error.

§

TimeoutError

Timeout error has occurred, function didn’t complete in time.

§

BrokenConnection(BrokenConnectionError)

A connection has been broken during query execution.

§

UnableToAllocStreamId

Driver was unable to allocate a stream id to execute a query on.

§

RequestTimeout(String)

Client timeout occurred before any response arrived

§

NextRowError(NextRowError)

An error occurred during async iteration over rows of result.

§

IntoLegacyQueryResultError(IntoLegacyQueryResultError)

👎Deprecated since 0.15.1: Legacy deserialization API is inefficient and is going to be removed soon

Failed to convert QueryResult into LegacyQueryResult.

Trait Implementations§

source§

impl Clone for QueryError

source§

fn clone(&self) -> QueryError

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for QueryError

source§

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

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

impl Display for QueryError

source§

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

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

impl Error for QueryError

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, request: &mut Request<'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<BadKeyspaceName> for QueryError

source§

fn from(keyspace_err: BadKeyspaceName) -> QueryError

Converts to this type from the input type.
source§

impl From<BadQuery> for QueryError

source§

fn from(source: BadQuery) -> Self

Converts to this type from the input type.
source§

impl From<BrokenConnectionError> for QueryError

source§

fn from(source: BrokenConnectionError) -> Self

Converts to this type from the input type.
source§

impl From<ConnectionPoolError> for QueryError

source§

fn from(source: ConnectionPoolError) -> Self

Converts to this type from the input type.
source§

impl From<CqlErrorParseError> for QueryError

source§

fn from(source: CqlErrorParseError) -> Self

Converts to this type from the input type.
source§

impl From<CqlRequestSerializationError> for QueryError

source§

fn from(source: CqlRequestSerializationError) -> Self

Converts to this type from the input type.
source§

impl From<CqlResultParseError> for QueryError

source§

fn from(source: CqlResultParseError) -> Self

Converts to this type from the input type.
source§

impl From<Elapsed> for QueryError

source§

fn from(timer_error: Elapsed) -> QueryError

Converts to this type from the input type.
source§

impl From<Error> for QueryError

source§

fn from(error: Error) -> QueryError

Converts to this type from the input type.
source§

impl From<FrameBodyExtensionsParseError> for QueryError

source§

fn from(source: FrameBodyExtensionsParseError) -> Self

Converts to this type from the input type.
source§

impl From<IntoLegacyQueryResultError> for QueryError

source§

fn from(source: IntoLegacyQueryResultError) -> Self

Converts to this type from the input type.
source§

impl From<MetadataError> for QueryError

source§

fn from(source: MetadataError) -> Self

Converts to this type from the input type.
source§

impl From<NextRowError> for QueryError

source§

fn from(source: NextRowError) -> Self

Converts to this type from the input type.
source§

impl From<ProtocolError> for QueryError

source§

fn from(source: ProtocolError) -> Self

Converts to this type from the input type.
source§

impl From<QueryError> for LegacyNextRowError

source§

fn from(source: QueryError) -> Self

Converts to this type from the input type.
source§

impl From<QueryError> for NewSessionError

source§

fn from(query_error: QueryError) -> NewSessionError

Converts to this type from the input type.
source§

impl From<SerializationError> for QueryError

source§

fn from(serialized_err: SerializationError) -> QueryError

Converts to this type from the input type.
source§

impl From<SerializeValuesError> for QueryError

source§

fn from(serialized_err: SerializeValuesError) -> QueryError

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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 T
where 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> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where 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 T
where 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 T
where 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.
source§

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

source§

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
source§

impl<T> ErasedDestructor for T
where T: 'static,