display.rs |
The number of days from the first day of the first ISO week of this
year to the year day YDAY with week day WDAY.
ISO weeks start on Monday. The first ISO week has the year's first
Thursday.
YDAY may be as small as yday_minimum.
|
8558 |
duration.rs |
Temporal quantification |
26571 |
lib.rs |
Simple time handling.
# Usage
This crate is [on crates.io](https://crates.io/crates/time) and can be
used by adding `time` to the dependencies in your project's `Cargo.toml`.
```toml
[dependencies]
time = "0.1"
```
And this in your crate root:
```rust
extern crate time;
```
This crate uses the same syntax for format strings as the
[`strftime()`](http://man7.org/linux/man-pages/man3/strftime.3.html)
function from the C standard library. |
41306 |
parse.rs |
|
13779 |
sys.rs |
|
30576 |