[][src]Enum cdrs::frame::frame_error::AdditionalErrorInfo

pub enum AdditionalErrorInfo {
    Server(SimpleError),
    Protocol(SimpleError),
    Authentication(SimpleError),
    Unavailable(UnavailableError),
    Overloaded(SimpleError),
    IsBootstrapping(SimpleError),
    Truncate(SimpleError),
    WriteTimeout(WriteTimeoutError),
    ReadTimeout(ReadTimeoutError),
    ReadFailure(ReadFailureError),
    FunctionFailure(FunctionFailureError),
    WriteFailure(WriteFailureError),
    Syntax(SimpleError),
    Unauthorized(SimpleError),
    Invalid(SimpleError),
    Config(SimpleError),
    AlreadyExists(AlreadyExistsError),
    Unprepared(UnpreparedError),
}

Additional error info in accordance to [Cassandra protocol v4] (https://github.com/apache/cassandra/blob/trunk/doc/native_protocol_v4.spec#L1011).

Variants

Server(SimpleError)
Protocol(SimpleError)
Authentication(SimpleError)
Unavailable(UnavailableError)
Overloaded(SimpleError)
IsBootstrapping(SimpleError)
Truncate(SimpleError)
WriteTimeout(WriteTimeoutError)
ReadTimeout(ReadTimeoutError)
ReadFailure(ReadFailureError)
FunctionFailure(FunctionFailureError)
WriteFailure(WriteFailureError)
Syntax(SimpleError)
Unauthorized(SimpleError)
Invalid(SimpleError)
Config(SimpleError)
AlreadyExists(AlreadyExistsError)
Unprepared(UnpreparedError)

Methods

impl AdditionalErrorInfo[src]

pub fn from_cursor_with_code(
    cursor: &mut Cursor<&[u8]>,
    error_code: CInt
) -> Result<AdditionalErrorInfo>
[src]

Trait Implementations

impl Debug for AdditionalErrorInfo[src]

Auto Trait Implementations

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, 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.