[][src]Struct nakadion::components::committer::CommitError

pub struct CommitError { /* fields omitted */ }

Error returned on failed commit attempts for a stream

Implementations

impl CommitError[src]

pub fn new(kind: CommitErrorKind) -> Self[src]

pub fn not_found() -> Self[src]

pub fn access_denied() -> Self[src]

pub fn unprocessable() -> Self[src]

pub fn bad_request() -> Self[src]

pub fn io() -> Self[src]

pub fn server() -> Self[src]

pub fn other() -> Self[src]

pub fn context<T: Into<String>>(self, context: T) -> Self[src]

pub fn caused_by<E: StdError + Send + Sync + 'static>(self, source: E) -> Self[src]

pub fn kind(&self) -> CommitErrorKind[src]

pub fn is_recoverable(&self) -> bool[src]

Trait Implementations

impl Debug for CommitError[src]

impl Display for CommitError[src]

impl Error for CommitError[src]

impl From<CommitError> for Error[src]

impl From<NakadiApiError> for CommitError[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> 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>,