Trait timeago::Language

source ·
pub trait Language {
    // Required methods
    fn too_low(&self) -> &'static str;
    fn too_high(&self) -> &'static str;
    fn ago(&self) -> &'static str;
    fn get_word(&self, tu: TimeUnit, x: u64) -> &'static str;
    fn clone_boxed(&self) -> BoxedLanguage;

    // Provided method
    fn place_ago_before(&self) -> bool { ... }
}
Expand description

Interface for connecting natural languages to use for the formatting See “language” module documentation for details.

Required Methods§

source

fn too_low(&self) -> &'static str

What to emit by default if value is too high

source

fn too_high(&self) -> &'static str

What to emit by default if value is too low

source

fn ago(&self) -> &'static str

Chunk of text to put at the end by default

source

fn get_word(&self, tu: TimeUnit, x: u64) -> &'static str

Get word representing the given time unit, for using with x number

source

fn clone_boxed(&self) -> BoxedLanguage

Make a dynamic copy of this language

Provided Methods§

source

fn place_ago_before(&self) -> bool

For German and such

Implementors§