31  explicit 
Duration(uint64_t milliseconds) noexcept;
 
   38  Duration(std::chrono::duration<uint64_t, std::milli> duration) noexcept;
 
   57  operator std::chrono::duration<uint64_t, std::milli>() const noexcept;
 
  136  uint64_t operator/(const 
Duration& rhs) const noexcept;
 
  203  bool operator==(const 
Duration& rhs) const noexcept;
 
  211  bool operator!=(const 
Duration& rhs) const noexcept;
 
  220  bool operator<(const 
Duration& rhs) const noexcept;
 
  228  bool operator<=(const 
Duration& rhs) const noexcept;
 
  237  bool operator>(const 
Duration& rhs) const noexcept;
 
  245  bool operator>=(const 
Duration& rhs) const noexcept;
 
  252  std::chrono::duration<uint64_t, std::milli> duration_;