Enum rust_3d::prelude::ErrorKind [] [src]

pub enum ErrorKind {
    MinMaxSwapped,
    MinMaxEqual,
    TooFewPoints,
    BoundingBoxMissing,
    NormalizeVecWithoutLength,
    IOError,
    ParseError,
    IndexOutOfBounds,
    IncorrectFaceID,
    IncorrectVertexID,
    IncorrectEdgeID,
    IncorrectVoxelID,
    IncorrectUnitID,
    IncorrectDimension,
    DimensionsDontMatch,
    NumberConversionError,
    NumberInWrongRange,
    ComparisionFailed,
    PlyError(PlyError),
}

The Error Enum used by rust-3d

Variants

Methods

impl ErrorKind
[src]

Returns readable text for the ErrorKind

Trait Implementations

impl Debug for ErrorKind
[src]

Formats the value using the given formatter.

impl From<ioError> for ErrorKind
[src]

Performs the conversion.