pub type InjectableResult<T> = Result<T, InjectableError>;Expand description
A specialized Result type for injectable operations.
Aliased Type§
pub enum InjectableResult<T> {
Ok(T),
Err(InjectableError),
}pub type InjectableResult<T> = Result<T, InjectableError>;A specialized Result type for injectable operations.
pub enum InjectableResult<T> {
Ok(T),
Err(InjectableError),
}