[][src]Struct ahum_dialoguer::theme::SimpleTheme

pub struct SimpleTheme;

The default theme.

Trait Implementations

impl Theme for SimpleTheme[src]

fn format_prompt(&self, f: &mut dyn Write, prompt: &str) -> Result[src]

Given a prompt this formats out what the prompt should look like (multiline).

fn format_singleline_prompt(
    &self,
    f: &mut dyn Write,
    prompt: &str,
    default: Option<&str>
) -> Result
[src]

Given a prompt this formats out what the prompt should look like (singleline).

fn format_error(&self, f: &mut dyn Write, err: &str) -> Result[src]

Formats out an error.

fn format_confirmation_prompt(
    &self,
    f: &mut dyn Write,
    prompt: &str,
    default: Option<bool>
) -> Result
[src]

Formats a confirmation prompt.

fn format_confirmation_prompt_selection(
    &self,
    f: &mut dyn Write,
    prompt: &str,
    selection: bool
) -> Result
[src]

Formats a confirmation prompt.

fn format_single_prompt_selection(
    &self,
    f: &mut dyn Write,
    prompt: &str,
    sel: &str
) -> Result
[src]

Renders a prompt and a single selection made.

fn format_multi_prompt_selection(
    &self,
    f: &mut dyn Write,
    prompt: &str,
    selections: &[&str]
) -> Result
[src]

Renders a prompt and multiple selections,

fn format_password_prompt_selection(
    &self,
    f: &mut dyn Write,
    prompt: &str
) -> Result
[src]

Renders a prompt and multiple selections,

fn format_selection(
    &self,
    f: &mut dyn Write,
    text: &str,
    style: SelectionStyle
) -> Result
[src]

Formats a selection.

Auto Trait Implementations

impl Send for SimpleTheme

impl Sync for SimpleTheme

Blanket Implementations

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.

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

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

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