ddd-rs 1.2.1

Domain-Driven Design (DDD) building blocks, for Rust applications.
Documentation
1
2
3
4
5
/// Alias for a type-erased error type.
pub type BoxError = Box<dyn std::error::Error + Send + Sync + 'static>;

/// `Result` type with a pre-defined [BoxError] error variant.
pub type Result<T, E = BoxError> = std::result::Result<T, E>;