rustium 0.1.4

A Rust application framework that values concurrency, performance, and scalability
Documentation
1
2
3
4
5
6
7
8
//! This is the main application Result type.
//! This should be used instead of anyhow::Result.

use crate::error::RustiumError;

/// Custom Result type to use with app-specific errors
/// A replacement for anyhow::
pub type RustiumResult<T> = core::result::Result<T, RustiumError>;