Enum bosun_emitter::EmitterError [] [src]

pub enum EmitterError {
    JsonParseError(EncoderError),
    EmitError(String),
    ReceiveError(String),
}

Errors which may occur while sending either meta data or metric data.

Variants

Failed to create JSON.

Failed to send JSON.

Failed to create Datum on server.

Trait Implementations

impl Debug for EmitterError
[src]

Formats the value using the given formatter.

impl From<Error> for EmitterError
[src]

Performs the conversion.

impl From<EncoderError> for EmitterError
[src]

Performs the conversion.