fn-traits 0.1.1

Provides function traits like the standard library ones, but can be used in stable Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
# fn-traits

[![crates.io](https://img.shields.io/crates/v/fn-traits)](https://crates.io/crates/fn-traits)
[![docs](https://docs.rs/fn-traits/badge.svg)](https://docs.rs/fn-traits)
[![CI](https://github.com/EFanZh/fn-traits/actions/workflows/ci.yml/badge.svg)](https://github.com/EFanZh/fn-traits/actions/workflows/ci.yml)
[![codecov](https://codecov.io/gh/EFanZh/fn-traits/branch/main/graph/badge.svg)](https://codecov.io/gh/EFanZh/fn-traits)
[![Coverage Status](https://coveralls.io/repos/github/EFanZh/fn-traits/badge.svg?branch=main)](https://coveralls.io/github/EFanZh/fn-traits?branch=main)

Provides function traits, like [`FnOnce`](https://doc.rust-lang.org/stable/std/ops/trait.FnOnce.html),
[`FnMut`](https://doc.rust-lang.org/stable/std/ops/trait.FnMut.html) and
[`Fn`](https://doc.rust-lang.org/stable/std/ops/trait.Fn.html), but can be used in stable Rust.