Struct clinput::Prompt[][src]

pub struct Prompt { /* fields omitted */ }

Structure containing all details of a prompt

Implementations

impl Prompt[src]

pub fn new() -> Prompt[src]

pub fn not_blank() -> Prompt[src]

pub fn yn() -> Prompt[src]

pub fn default(self, default: &str) -> Prompt[src]

Set the default value

pub fn choices(self, choices: Vec<&str>) -> Self[src]

Set the choices

pub fn validate(
    self,
    func: impl Fn(String) -> Result<String, PromptError> + 'static
) -> Prompt
[src]

Set the validation for this prompt

pub fn ask(&self, question: &str) -> Result<String, PromptError>[src]

Ask the question

Auto Trait Implementations

impl !RefUnwindSafe for Prompt

impl !Send for Prompt

impl !Sync for Prompt

impl Unpin for Prompt

impl !UnwindSafe for Prompt

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.