yaz0 0.3.0

A library for de/compressing Nintendo Yaz0 files
Documentation
1
2
3
4
5
6
7
8
9
10
11
use thiserror::Error;

#[derive(Error, Debug)]
pub enum Error {
    /// An error was encountered performing IO operations.
    #[error("backing i/o error")]
    Io(#[from] std::io::Error),
    /// The Yaz0 file header's magic was invalid.
    #[error("yaz0 header magic invalid")]
    InvalidMagic,
}