crabbyq 1.0.0

A declarative async Rust framework for message-driven microservices.
Documentation
1
2
3
4
5
6
/// Common boxed error type used across the framework.
pub type CrabbyError = Box<dyn std::error::Error + Send + Sync>;

/// Convenient result alias for handlers and applications that use the default
/// framework error type.
pub type CrabbyResult<T> = Result<T, CrabbyError>;