pub type Result<T> = Result<T, ReedlineError>;Expand description
Standard std::result::Result, with ReedlineError as the error variant
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(ReedlineError),
}pub type Result<T> = Result<T, ReedlineError>;Standard std::result::Result, with ReedlineError as the error variant
pub enum Result<T> {
Ok(T),
Err(ReedlineError),
}