Enum dogstatsd::DogstatsdError [] [src]

pub enum DogstatsdError {
    IoError(Error),
}

This type represents the possible errors that can occur while sending DogstatsD metrics.

Variants

Chained IO errors.

Trait Implementations

impl Debug for DogstatsdError
[src]

[src]

Formats the value using the given formatter. Read more

impl Display for DogstatsdError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for DogstatsdError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

The lower-level cause of this error, if any. Read more

impl From<Error> for DogstatsdError
[src]

[src]

Performs the conversion.

Auto Trait Implementations