Struct grpcio_sys::gpr_timespec [−][src]
#[repr(C)]pub struct gpr_timespec {
pub tv_sec: i64,
pub tv_nsec: i32,
pub clock_type: gpr_clock_type,
}
Expand description
Analogous to struct timespec. On some machines, absolute times may be in local time.
Fields
tv_sec: i64
tv_nsec: i32
clock_type: gpr_clock_type
Against which clock was this time measured? (or GPR_TIMESPAN if this is a relative time measure)
Implementations
Trait Implementations
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for gpr_timespec
impl Send for gpr_timespec
impl Sync for gpr_timespec
impl Unpin for gpr_timespec
impl UnwindSafe for gpr_timespec
Blanket Implementations
Mutably borrows from an owned value. Read more