Enum foundry::error::FileParsingErrorKind[][src]

pub enum FileParsingErrorKind {
    UnknownFormat,
    IoError,
    IncompleteFile,
    RuleParsingError,
    CoordParsingError,
    OutOfBoundCoords(GridErrorKind),
}

Represents the possible errors which can occur when manipulating a life file.

Variants

Trait Implementations

impl Debug for FileParsingErrorKind
[src]

Formats the value using the given formatter. Read more

impl Display for FileParsingErrorKind
[src]

Formats the value using the given formatter. Read more

impl Error for FileParsingErrorKind
[src]

This method is soft-deprecated. Read more

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

impl From<Error> for FileParsingErrorKind
[src]

Performs the conversion.

impl From<ParseIntError> for FileParsingErrorKind
[src]

Performs the conversion.

impl From<GridErrorKind> for FileParsingErrorKind
[src]

Performs the conversion.

Auto Trait Implementations