pub trait Humanize {
    // Required method
    fn humanize(&self) -> String;
}
Expand description

Present the object in human friendly text form

Required Methods§

source

fn humanize(&self) -> String

Emits String that represents current object in human friendly form

Implementations on Foreign Types§

source§

impl Humanize for Duration

source§

impl Humanize for SystemTime

source§

impl<TZ> Humanize for DateTime<TZ>where TZ: TimeZone,

Implementors§