pub type ServiceResult<T> = Result<T, ServiceError>;Expand description
Convenient result alias for service operations.
Aliased Type§
pub enum ServiceResult<T> {
Ok(T),
Err(ServiceError),
}pub type ServiceResult<T> = Result<T, ServiceError>;Convenient result alias for service operations.
pub enum ServiceResult<T> {
Ok(T),
Err(ServiceError),
}