Enum statsd::client::StatsdError [] [src]

pub enum StatsdError {
    IoError(Error),
    AddrParseError(String),
}

Variants

IoError(Error)AddrParseError(String)

Trait Implementations

impl Debug for StatsdError
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl From<AddrParseError> for StatsdError
[src]

fn from(_: AddrParseError) -> StatsdError

Performs the conversion.

impl From<Error> for StatsdError
[src]

fn from(err: Error) -> StatsdError

Performs the conversion.