Trait terminal_cli::i18n::Strings [] [src]

pub trait Strings {
    fn property_invalid_value(
        &self,
        f: &mut CharacterTerminalWriter,
        id: &str,
        input: &str
    ) -> Result<(), FmtError> { ... }
fn property_value_too_small(
        &self,
        f: &mut CharacterTerminalWriter,
        id: &str,
        val: &Display,
        min: &Display
    ) -> Result<(), FmtError> { ... }
fn property_value_too_big(
        &self,
        f: &mut CharacterTerminalWriter,
        id: &str,
        val: &Display,
        max: &Display
    ) -> Result<(), FmtError> { ... }
fn property_value_set(
        &self,
        f: &mut CharacterTerminalWriter,
        id: &str,
        val: &Display
    ) -> Result<(), FmtError> { ... }
fn cmd_not_recognized(
        &self,
        f: &mut CharacterTerminalWriter,
        cmd: &str
    ) -> Result<(), FmtError> { ... } }

Provided Methods

Implementors