pub fn read_input_with_prompt<T>( prompt: Arguments<'_>, ) -> Result<T, InputError<T::Err>>where T: FromStr, T::Err: Display + Debug,
A convenience wrapper that reads from stdin, printing the given prompt first.