pub type InteractiveResult<T> = Result<T>;
Result type used by interactive prompt helpers.
pub enum InteractiveResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value