Enum codespawn::error::CodeSpawnError [] [src]

pub enum CodeSpawnError {
    Io(Error),
    Json(JsonError),
    Xml(Error),
    Other(String),
}

Error type for codespawn crate.

Variants

I/O error

JSON parser error

XML parser error

Any other kind of error

Trait Implementations

impl Debug for CodeSpawnError
[src]

Formats the value using the given formatter.

impl Display for CodeSpawnError
[src]

Formats the value using the given formatter. Read more

impl Error for CodeSpawnError
[src]

A short description of the error. Read more

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

impl From<Error> for CodeSpawnError
[src]

Performs the conversion.

impl From<JsonError> for CodeSpawnError
[src]

Performs the conversion.

impl From<Error> for CodeSpawnError
[src]

Performs the conversion.

impl From<String> for CodeSpawnError
[src]

Performs the conversion.

impl From<ParseIntError> for CodeSpawnError
[src]

Performs the conversion.