[][src]Enum organix::WatchdogError

pub enum WatchdogError {
    UnknownService {
        service_identifier: ServiceIdentifier,
        possible_values: &'static [ServiceIdentifier],
    },
    CannotStartService {
        service_identifier: ServiceIdentifier,
        source: ServiceError,
    },
    CannotConnectToService {
        service_identifier: ServiceIdentifier,
        retry_attempted: bool,
    },
    NoReply {
        reason: RecvError,
        context: &'static str,
    },
}

Variants

UnknownService

Fields of UnknownService

service_identifier: ServiceIdentifierpossible_values: &'static [ServiceIdentifier]
CannotStartService

Fields of CannotStartService

service_identifier: ServiceIdentifiersource: ServiceError
CannotConnectToService

Fields of CannotConnectToService

service_identifier: ServiceIdentifierretry_attempted: bool
NoReply

Fields of NoReply

reason: RecvErrorcontext: &'static str

Trait Implementations

impl Debug for WatchdogError[src]

impl Display for WatchdogError[src]

impl Eq for WatchdogError[src]

impl Error for WatchdogError[src]

impl PartialEq<WatchdogError> for WatchdogError[src]

impl StructuralEq for WatchdogError[src]

impl StructuralPartialEq for WatchdogError[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> 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<T> WithSubscriber for T[src]