poodio 0.0.23

Farts poo poo audio
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Error handling module.

pub use thiserror::Error;

/// Error enums for [`poodio`](crate).
#[derive(Debug, Error)]
pub enum Error {
    /// The process exits with a specific code.
    #[error("Exit with code: {0}")]
    Exit(i32),

    /// It is converted from [`std::io::Error`].
    #[error("IO error: {0}")]
    Io(#[from] std::io::Error),
}