egraphics-io 0.0.1-alpha.9

IO operations for processing graphics formats in 3D space.
Documentation
1
2
3
4
5
6
7
use thiserror::Error;

#[derive(Error, Debug)]
pub enum Error {
    #[error(transparent)]
    Io(#[from] std::io::Error),
}