mirror of
https://github.com/a2x/cs2-dumper.git
synced 2025-04-04 11:45:35 +08:00
32 lines
658 B
Rust
32 lines
658 B
Rust
use thiserror::Error;
|
|
|
|
pub type Result<T> = std::result::Result<T, Error>;
|
|
|
|
#[derive(Debug, Error)]
|
|
pub enum Error {
|
|
#[error(transparent)]
|
|
Fmt(#[from] std::fmt::Error),
|
|
|
|
#[error(transparent)]
|
|
Io(#[from] std::io::Error),
|
|
|
|
#[error(transparent)]
|
|
Memflow(#[from] memflow::error::Error),
|
|
|
|
#[error(transparent)]
|
|
Pelite(#[from] pelite::Error),
|
|
|
|
#[error(transparent)]
|
|
Serde(#[from] serde_json::Error),
|
|
|
|
#[error("{0}")]
|
|
Other(&'static str),
|
|
}
|
|
|
|
impl<T> From<memflow::error::PartialError<T>> for Error {
|
|
#[inline]
|
|
fn from(err: memflow::error::PartialError<T>) -> Self {
|
|
Error::Memflow(err.into())
|
|
}
|
|
}
|