pub fn prompt_with<'a, Q, B, E>( questions: Q, backend: &mut B, events: &mut E, ) -> Result<Answers>where Q: IntoIterator<Item = Question<'a>>, B: Backend, E: EventIterator,
Prompt all the questions in the given iterator, with the given Backend and EventIterator.
Backend
EventIterator