Enum gltf::Error [] [src]

pub enum Error {
    Deserialize(Error),
    Glb(String),
    Validation(Vec<(Path, Error)>),
}

Represents a runtime error.

Variants

JSON deserialization error.

GLB parsing error.

glTF validation error.

Trait Implementations

impl Debug for Error
[src]

[src]

Formats the value using the given formatter.

impl Display for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for Error
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

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

impl From<Error> for Error
[src]

[src]

Performs the conversion.

impl From<Vec<(Path, Error)>> for Error
[src]

[src]

Performs the conversion.