Lines Matching defs:TimeSpec
188 pub struct TimeSpec(timespec); struct
209 impl From<timespec> for TimeSpec { implementation
215 impl From<Duration> for TimeSpec { implementation
227 impl AsRef<timespec> for TimeSpec { implementation
233 impl AsMut<timespec> for TimeSpec { implementation
239 impl Ord for TimeSpec { implementation
251 impl PartialOrd for TimeSpec { implementation
257 impl TimeValLike for TimeSpec { implementation
261 fn seconds(seconds: i64) -> TimeSpec { in seconds() method
273 fn milliseconds(milliseconds: i64) -> TimeSpec { in milliseconds() method
283 fn microseconds(microseconds: i64) -> TimeSpec { in microseconds() method
295 fn nanoseconds(nanoseconds: i64) -> TimeSpec { in nanoseconds() method
334 impl TimeSpec { implementation
375 impl ops::Neg for TimeSpec { implementation
378 fn neg(self) -> TimeSpec { in neg()
383 impl ops::Add for TimeSpec { implementation
386 fn add(self, rhs: TimeSpec) -> TimeSpec { in add()
391 impl ops::Sub for TimeSpec { implementation
394 fn sub(self, rhs: TimeSpec) -> TimeSpec { in sub()
399 impl ops::Mul<i32> for TimeSpec { implementation
402 fn mul(self, rhs: i32) -> TimeSpec { in mul()
412 impl ops::Div<i32> for TimeSpec { implementation
415 fn div(self, rhs: i32) -> TimeSpec { in div()
421 impl fmt::Display for TimeSpec { implementation