pub type ServiceResult<T> = Result<T, ServiceError>;
Expand description
Service result type
Aliased Type§
pub enum ServiceResult<T> {
Ok(T),
Err(ServiceError),
}
pub type ServiceResult<T> = Result<T, ServiceError>;
Service result type
pub enum ServiceResult<T> {
Ok(T),
Err(ServiceError),
}