fastmem 0.1.0

Configurable utilities for fast memory operations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Utilities to unblock main thread.
//!
//! # Cargo Features
//!
//! ## `enable`
//!
//! This enables fast-mode of this crate.

#![deny(clippy::all)]
#![deny(unused)]

pub use self::fast_drop::*;

mod fast_drop;