[][src]Enum rusoto_qldb_session::SendCommandError

pub enum SendCommandError {
    BadRequest(String),
    InvalidSession(String),
    LimitExceeded(String),
    OccConflict(String),
    RateExceeded(String),
}

Errors returned by SendCommand

Variants

BadRequest(String)

Returned if the request is malformed or contains an error such as an invalid parameter value or a missing required parameter.

InvalidSession(String)

Returned if the session doesn't exist anymore because it timed out or expired.

LimitExceeded(String)

Returned if a resource limit such as number of active sessions is exceeded.

OccConflict(String)

Returned when a transaction cannot be written to the journal due to a failure in the verification phase of optimistic concurrency control (OCC).

RateExceeded(String)

Returned when the rate of requests exceeds the allowed throughput.

Implementations

impl SendCommandError[src]

Trait Implementations

impl Debug for SendCommandError[src]

impl Display for SendCommandError[src]

impl Error for SendCommandError[src]

impl PartialEq<SendCommandError> for SendCommandError[src]

impl StructuralPartialEq for SendCommandError[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> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.