executors 0.2.0

A collection of high-performance task executors.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2017 Lars Kroll. See the LICENSE
// file at the top-level directory of this distribution.
//
// Licensed under the MIT license
// <LICENSE or http://opensource.org/licenses/MIT>.
// This file may not be copied, modified, or distributed
// except according to those terms.

pub const NS_PER_S: u64 = 1_000_000_000;
pub const US_PER_S: u64 = 1_000_000;
pub const MS_PER_S: u64 = 1_000;

pub const NS_PER_MS: u64 = 1_000_000;
pub const US_PER_MS: u64 = 1_000;

pub const NS_PER_US: u64 = 1_000;