prompt_with

Function prompt_with 

Source
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,
Expand description

Prompt all the questions in the given iterator, with the given Backend and EventIterator.