Trait time_humanize::FromTime[][src]

pub trait FromTime {
    fn from_seconds(seconds: i64) -> HumanTime;
fn from_minutes(minutes: i64) -> HumanTime;
fn from_hours(hours: i64) -> HumanTime;
fn from_days(days: i64) -> HumanTime;
fn from_weeks(weeks: i64) -> HumanTime;
fn from_months(months: i64) -> HumanTime;
fn from_years(years: i64) -> HumanTime; }

Required methods

Implementors