Trait inquire::PromptMany[][src]

pub trait PromptMany {
    fn prompt(self) -> InquireResult<Vec<String>>;
}
Expand description

Trait to call prompt on a collection of Text instances.

Required methods

Calls prompt on a collection of Text instances and return their respective responses or the first error that appears.

Implementors