Enum strymon_job::operators::subscribe::SubscriptionError [] [src]

pub enum SubscriptionError {
    TopicNotFound,
    TypeMismatch,
    AuthenticationFailure,
    IoError(Error),
}

Failure states when subscribting to a topic.

Variants

The requested topic does not exist.

The requested topic exists, but its timestamp or data type does not match.

The current job does is not authenticated to subscribe to topics.

A networking error occured.

Trait Implementations

impl Debug for SubscriptionError
[src]

[src]

Formats the value using the given formatter. Read more

impl From<SubscribeError> for SubscriptionError
[src]

[src]

Performs the conversion.

impl From<UnsubscribeError> for SubscriptionError
[src]

[src]

Performs the conversion.

impl From<Error> for SubscriptionError
[src]

[src]

Performs the conversion.

impl<T, E> From<Result<T, E>> for SubscriptionError where
    T: Into<SubscriptionError>,
    E: Into<SubscriptionError>, 
[src]

[src]

Performs the conversion.