pub type AbstractResult<T> = Result<T, AbstractOsError>;
Expand description
Result type for Abstract OS objects
Aliased Type§
pub enum AbstractResult<T> {
Ok(T),
Err(AbstractOsError),
}
pub type AbstractResult<T> = Result<T, AbstractOsError>;
Result type for Abstract OS objects
pub enum AbstractResult<T> {
Ok(T),
Err(AbstractOsError),
}