Result

Type Alias Result 

Source
pub type Result<D = Mesh> = Result<D, Error>;
Expand description

This result may contain the parsed crate::geometry::mesh::Mesh or the self::Result that occurred.

Aliased Type§

pub enum Result<D = Mesh> {
    Ok(D),
    Err(Error),
}

Variants§

§1.0.0

Ok(D)

Contains the success value

§1.0.0

Err(Error)

Contains the error value