[][src]Struct unisecs::Seconds

pub struct Seconds(_);

Represents fractional seconds since the unix epoch These can be derived from std::time::Duration and be converted into std::time::Duration

A Default implementation is provided which yields the number of seconds since the epoch from the system time's now value

You can also and and subtract durations from Seconds.

Methods

impl Seconds[src]

pub fn now() -> Self[src]

return the current time in seconds since the unix epoch (1-1-1970 midnight)

pub fn trunc(self) -> Self[src]

truncate epoc time to remove fractional seconds

Trait Implementations

impl Clone for Seconds[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Into<f64> for Seconds[src]

impl Into<Duration> for Seconds[src]

impl Copy for Seconds[src]

impl PartialEq<Seconds> for Seconds[src]

impl Default for Seconds[src]

impl Display for Seconds[src]

impl Debug for Seconds[src]

impl Add<Duration> for Seconds[src]

Similar to date -v+1S +%s

type Output = Seconds

The resulting type after applying the + operator.

impl Sub<Duration> for Seconds[src]

Similar to date -v-1S +%s

type Output = Seconds

The resulting type after applying the - operator.

impl Serialize for Seconds[src]

impl<'de> Deserialize<'de> for Seconds[src]

Auto Trait Implementations

impl Send for Seconds

impl Sync for Seconds

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]