Skip to main content

rustium/
result.rs

1//! This is the main application Result type.
2//! This should be used instead of anyhow::Result.
3
4use crate::error::RustiumError;
5
6/// Custom Result type to use with app-specific errors
7/// A replacement for anyhow::
8pub type RustiumResult<T> = core::result::Result<T, RustiumError>;