rustium 0.1.4

A Rust application framework that values concurrency, performance, and scalability
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Crate Prelude

pub use crate::error::RustiumError;
pub use crate::result::RustiumResult;

/// Generic Wrapper tuple struct for newtype pattern
/// for external type to type From/TryFrom implementations
pub struct Wrap<T>(pub T);

/// Shorthand (for convenience)
pub use std::format as f;