Enum trust_dns::error::ConfigError [] [src]

pub enum ConfigError {
    IoError(Error),
    ParserError(ParserError),
    VecParserError(Vec<ParserError>),
    DecodeError(DecodeError),
}

Variants

IoError
ParserError
VecParserError
DecodeError

Trait Implementations

impl Debug for ConfigError

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

impl Display for ConfigError

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

impl Error for ConfigError

fn description(&self) -> &str

fn cause(&self) -> Option<&Error>

impl From<Error> for ConfigError

fn from(err: Error) -> Self

impl From<ParserError> for ConfigError

fn from(err: ParserError) -> Self

impl From<Vec<ParserError>> for ConfigError

fn from(err: Vec<ParserError>) -> Self

impl From<DecodeError> for ConfigError

fn from(err: DecodeError) -> Self