//! This is the main application Result type.
//! This should be used instead of anyhow::Result.
usecrate::error::RustiumError;/// Custom Result type to use with app-specific errors
/// A replacement for anyhow::
pubtypeRustiumResult<T>=core::result::Result<T, RustiumError>;