2014-08-01 00:24:54 +00:00
|
|
|
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
//! Temporal quantification.
|
|
|
|
|
2015-07-06 06:20:00 +00:00
|
|
|
#![stable(feature = "time", since = "1.3.0")]
|
2014-11-10 20:27:56 +00:00
|
|
|
|
2014-08-01 00:24:54 +00:00
|
|
|
pub use self::duration::Duration;
|
|
|
|
|
2015-04-28 18:40:04 +00:00
|
|
|
mod duration;
|