Enum nakadion::streaming_client::ConnectError[][src]

pub enum ConnectError {
    Token(String),
    Connection(String),
    Forbidden(StringFlowId),
    Unauthorized(StringFlowId),
    BadRequest(StringFlowId),
    Conflict(StringFlowId),
    SubscriptionNotFound(StringFlowId),
    Other(StringFlowId),
}

Errors that can happen when connectiong to Nakadi for extablishing a streaming connection.

Variants

Methods

impl ConnectError
[src]

Returns true if this error can most possibly not be mitigated by performing a retry.

Trait Implementations

impl Debug for ConnectError
[src]

Formats the value using the given formatter. Read more

impl From<TokenError> for ConnectError
[src]

Performs the conversion.

impl From<Error> for ConnectError
[src]

Performs the conversion.

Auto Trait Implementations