[][src]Struct time::Timespec

pub struct Timespec {
    pub sec: i64,
    pub nsec: i32,
}

A record specifying a time value in seconds and nanoseconds, where nanoseconds represent the offset from the given second.

For example a timespec of 1.2 seconds after the beginning of the epoch would be represented as {sec: 1, nsec: 200000000}.

Fields

sec: i64nsec: i32

Implementations

impl Timespec[src]

pub fn new(sec: i64, nsec: i32) -> Timespec[src]

Trait Implementations

impl Add<Duration> for Timespec[src]

type Output = Timespec

The resulting type after applying the + operator.

impl Clone for Timespec[src]

impl Copy for Timespec[src]

impl Debug for Timespec[src]

impl Eq for Timespec[src]

impl Hash for Timespec[src]

impl Ord for Timespec[src]

impl PartialEq<Timespec> for Timespec[src]

impl PartialOrd<Timespec> for Timespec[src]

impl StructuralEq for Timespec[src]

impl StructuralPartialEq for Timespec[src]

impl Sub<Duration> for Timespec[src]

type Output = Timespec

The resulting type after applying the - operator.

impl Sub<Timespec> for Timespec[src]

type Output = Duration

The resulting type after applying the - operator.

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.