pub type Result<T> = Result<T, MapletError>;
Expand description
Common result type for maplet operations
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(MapletError),
}
pub type Result<T> = Result<T, MapletError>;
Common result type for maplet operations
pub enum Result<T> {
Ok(T),
Err(MapletError),
}