Lines Matching defs:TimeSpec
51 pub struct TimeSpec(timespec); struct
72 impl From<timespec> for TimeSpec { implementation
78 impl From<Duration> for TimeSpec { implementation
90 impl AsRef<timespec> for TimeSpec { implementation
96 impl AsMut<timespec> for TimeSpec { implementation
102 impl Ord for TimeSpec { implementation
114 impl PartialOrd for TimeSpec { implementation
120 impl TimeValLike for TimeSpec { implementation
122 fn seconds(seconds: i64) -> TimeSpec { in seconds() method
130 fn milliseconds(milliseconds: i64) -> TimeSpec { in milliseconds() method
139 fn microseconds(microseconds: i64) -> TimeSpec { in microseconds() method
148 fn nanoseconds(nanoseconds: i64) -> TimeSpec { in nanoseconds() method
180 impl TimeSpec { implementation
211 impl ops::Neg for TimeSpec { implementation
214 fn neg(self) -> TimeSpec { in neg()
219 impl ops::Add for TimeSpec { implementation
222 fn add(self, rhs: TimeSpec) -> TimeSpec { in add()
228 impl ops::Sub for TimeSpec { implementation
231 fn sub(self, rhs: TimeSpec) -> TimeSpec { in sub()
237 impl ops::Mul<i32> for TimeSpec { implementation
240 fn mul(self, rhs: i32) -> TimeSpec { in mul()
248 impl ops::Div<i32> for TimeSpec { implementation
251 fn div(self, rhs: i32) -> TimeSpec { in div()
257 impl fmt::Display for TimeSpec { implementation