pub trait IntoTimeValue {
    // Required methods
    fn years(self) -> TimeValue;
    fn months(self) -> TimeValue;
    fn weeks(self) -> TimeValue;
    fn days(self) -> TimeValue;
    fn hours(self) -> TimeValue;
    fn mins(self) -> TimeValue;
    fn secs(self) -> TimeValue;
    fn millis(self) -> TimeValue;
    fn micros(self) -> TimeValue;
    fn nanos(self) -> TimeValue;
    fn ticks(self) -> TimeValue;
}

Required Methods§

Implementations on Foreign Types§

source§

impl IntoTimeValue for i8

source§

impl IntoTimeValue for i16

source§

impl IntoTimeValue for i32

source§

impl IntoTimeValue for i64

source§

impl IntoTimeValue for i128

source§

impl IntoTimeValue for isize

source§

impl IntoTimeValue for u8

source§

impl IntoTimeValue for u16

source§

impl IntoTimeValue for u32

source§

impl IntoTimeValue for u64

source§

impl IntoTimeValue for u128

source§

impl IntoTimeValue for usize

Implementors§