Lines Matching defs:TimeVal
453 pub struct TimeVal(timeval); struct
465 impl AsRef<timeval> for TimeVal { implementation
471 impl AsMut<timeval> for TimeVal { implementation
477 impl Ord for TimeVal { implementation
489 impl PartialOrd for TimeVal { implementation
495 impl TimeValLike for TimeVal { implementation
497 fn seconds(seconds: i64) -> TimeVal { in seconds() method
512 fn milliseconds(milliseconds: i64) -> TimeVal { in milliseconds() method
522 fn microseconds(microseconds: i64) -> TimeVal { in microseconds() method
539 fn nanoseconds(nanoseconds: i64) -> TimeVal { in nanoseconds() method
581 impl TimeVal { implementation
609 impl ops::Neg for TimeVal { implementation
612 fn neg(self) -> TimeVal { in neg()
617 impl ops::Add for TimeVal { implementation
620 fn add(self, rhs: TimeVal) -> TimeVal { in add()
625 impl ops::Sub for TimeVal { implementation
628 fn sub(self, rhs: TimeVal) -> TimeVal { in sub()
633 impl ops::Mul<i32> for TimeVal { implementation
636 fn mul(self, rhs: i32) -> TimeVal { in mul()
646 impl ops::Div<i32> for TimeVal { implementation
649 fn div(self, rhs: i32) -> TimeVal { in div()
655 impl fmt::Display for TimeVal { implementation
683 impl From<timeval> for TimeVal { implementation