pub type ResultEx<T> = Result<T>;
Expand description
Result type for MemProcFS API.
The MemProcFS result type is a wrapper around the anyhow::Result type. It contains a function-defined return type and a String error type.
Aliased Type§
pub enum ResultEx<T> {
Ok(T),
Err(Error),
}