• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.travis/H03-May-2022-5234

src/H03-May-2022-465304

.cargo-checksum.jsonH A D03-May-202289 11

.gitignoreH A D01-Feb-201718 32

.travis.ymlH A D01-Feb-2017151 1110

Cargo.tomlH A D13-Mar-2017420 1412

LICENSEH A D01-Feb-20171 KiB2217

README.mdH A D01-Feb-2017741 128

README.md

1[![Travis Build Status](https://travis-ci.org/stbuehler/rust-boxfnonce.svg?branch=master)](https://travis-ci.org/stbuehler/rust-boxfnonce)
2[![crates.io](https://img.shields.io/crates/v/boxfnonce.svg)](https://crates.io/crates/boxfnonce)
3[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)
4
5This library provide a safe way to box FnOnce types.  It doesn't use any
6unstable features and is therefore fully compatible with rust stable.
7
8This library is provided because `Box<FnOnce()>` doesn't work yet, and
9`Box<FnBox()>` will never be available in rust stable.
10
11The documentation is located at [https://stbuehler.github.io/rustdocs/boxfnonce/boxfnonce/](https://stbuehler.github.io/rustdocs/boxfnonce/boxfnonce/).
12