pub type Result<T> = Result<T, ServiceError>;Expand description
Result type alias for Railway-Oriented Programming
Success track: Ok(T) Error track: Err(ServiceError)
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(ServiceError),
}pub type Result<T> = Result<T, ServiceError>;Result type alias for Railway-Oriented Programming
Success track: Ok(T) Error track: Err(ServiceError)
pub enum Result<T> {
Ok(T),
Err(ServiceError),
}