Enum nastran::errors::Error []

pub enum Error {
    ParseFailure,
    UnexpectedFieldEnd(String),
    UnexpectedCharInField(String),
    UnexpectedContinuation(String),
    LineError(usizeBox<Error>),
    UnmatchedContinuation(String),
    NotPossible(&'static str),
    UTF8ConversionError(Utf8Error),
    OP2ParseError(ErrorKind),
    ParseIntError(ParseIntError),
    ParseFloatError(ParseFloatError),
}

Variants

Trait Implementations

impl Debug for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl Display for Error

Formats the value using the given formatter. Read more

impl Error for Error

A short description of the error. Read more

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

impl From<Utf8Error> for Error

Performs the conversion.

impl From<ErrorKind> for Error

Performs the conversion.

impl From<ParseIntError> for Error

Performs the conversion.

impl From<ParseFloatError> for Error

Performs the conversion.

Auto Trait Implementations

impl Send for Error

impl Sync for Error