Struct promptly::Prompter

source ·
pub struct Prompter<C: Completer> { /* private fields */ }
Expand description

Optinionated wrapper around rustyline to prompt for strings

Implementations§

source§

impl Prompter<()>

source

pub fn new() -> Prompter<()>

source§

impl<C> Prompter<C>
where C: Completer,

source

pub fn with_completer(completer: C) -> Prompter<C>

source

pub fn prompt_once<S: AsRef<str>>(&mut self, msg: S) -> String

source

pub fn prompt_opt<S: AsRef<str>>(&mut self, msg: S) -> Option<String>

Prompts once but returns None for empty input

source

pub fn prompt_nonempty<S: AsRef<str>>(&mut self, msg: S) -> String

Prompts until a non-empty value is provided

source

pub fn prompt_then<S, F, U>(&mut self, msg: S, handler: F) -> U
where S: AsRef<str>, F: Fn(String) -> Result<U, String>,

Prompts with custom handler to transform input

Auto Trait Implementations§

§

impl<C> Freeze for Prompter<C>
where C: Freeze,

§

impl<C> RefUnwindSafe for Prompter<C>
where C: RefUnwindSafe,

§

impl<C> Send for Prompter<C>
where C: Send,

§

impl<C> Sync for Prompter<C>
where C: Sync,

§

impl<C> Unpin for Prompter<C>
where C: Unpin,

§

impl<C> UnwindSafe for Prompter<C>
where C: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.