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