File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ Rust the wrapped closures implement
33
33
[ ` traits::FnOnce ` ] ( https://docs.rs/serde_closure/0.3/serde_closure/traits/trait.FnOnce.html ) ,
34
34
[ ` traits::FnMut ` ] ( https://docs.rs/serde_closure/0.3/serde_closure/traits/trait.FnMut.html )
35
35
and [ ` traits::Fn ` ] ( https://docs.rs/serde_closure/0.3/serde_closure/traits/trait.Fn.html ) ,
36
- and when the " nightly" feature is passed
36
+ and on nightly Rust
37
37
[ ` std::ops::FnOnce ` ] ( https://doc.rust-lang.org/std/ops/trait.FnOnce.html ) ,
38
38
[ ` std::ops::FnMut ` ] ( https://doc.rust-lang.org/std/ops/trait.FnMut.html ) and
39
39
[ ` std::ops::Fn ` ] ( https://doc.rust-lang.org/std/ops/trait.Fn.html ) are
Original file line number Diff line number Diff line change 26
26
//!
27
27
//! This library aims to work in as simple and safe a way as possible. On stable
28
28
//! Rust the wrapped closures implement [`traits::FnOnce`], [`traits::FnMut`]
29
- //! and [`traits::Fn`], and when the " nightly" feature is passed
30
- //! [`std::ops::FnOnce`], [`std::ops:: FnMut`] and [`std::ops::Fn`] are
31
- //! implemented as well using the `unboxed_closures` and `fn_traits` features
32
- //! (rust issue [#29625](https://github.com/rust-lang/rust/issues/29625)).
29
+ //! and [`traits::Fn`], and on nightly Rust [`std::ops::FnOnce`],
30
+ //! [`std::ops::FnMut`] and [`std::ops::Fn`] are implemented as well using the
31
+ //! `unboxed_closures` and `fn_traits` features (rust issue
32
+ //! [#29625](https://github.com/rust-lang/rust/issues/29625)).
33
33
//!
34
34
//! * There are three macros, [`FnOnce`](macro@FnOnce), [`FnMut`](macro@FnMut)
35
35
//! and [`Fn`](macro@Fn), corresponding to the three types of Rust closure.
You can’t perform that action at this time.
0 commit comments