mirror of
https://github.com/tribufu/rust-gamedig
synced 2026-05-06 15:27:28 +00:00
12 lines
239 B
Rust
12 lines
239 B
Rust
//! Every GameDig errors.
|
|
|
|
/// The Error with backtrace.
|
|
pub mod error;
|
|
/// All defined Error kinds.
|
|
pub mod kind;
|
|
/// `GDResult`, a shorthand of `Result<T, GDError>`.
|
|
pub mod result;
|
|
|
|
pub use error::*;
|
|
pub use kind::*;
|
|
pub use result::*;
|