Enum conllx::Error [] [src]

pub enum Error {
    Io(Error),
    Parse(ParseIntError),
    // some variants omitted
}

An error that occurred during reading or writing of CONLL-X data.

Variants

An IO error.

Error parsing numerical columns: token identifier, head or projective head.

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl From<Error> for Error
[src]

Performs the conversion.

impl From<ParseIntError> for Error
[src]

Performs the conversion.

impl Display for Error
[src]

Formats the value using the given formatter.