pub type Result<'a, T> = Result<T, InteractiveError<'a>>;Expand description
The result type of most interactive methods.
Aliased Type§
pub enum Result<'a, T> {
Ok(T),
Err(InteractiveError<'a>),
}pub type Result<'a, T> = Result<T, InteractiveError<'a>>;The result type of most interactive methods.
pub enum Result<'a, T> {
Ok(T),
Err(InteractiveError<'a>),
}