We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 440e873 commit 7a63c7fCopy full SHA for 7a63c7f
src/doc/unstable-book/src/library-features/fnbox.md
@@ -8,15 +8,15 @@ The tracking issue for this feature is [#28796]
8
9
This had been a temporary alternative to the following impls:
10
11
-```rust
+```rust,ignore
12
impl<A, F> FnOnce for Box<F> where F: FnOnce<A> + ?Sized {}
13
impl<A, F> FnMut for Box<F> where F: FnMut<A> + ?Sized {}
14
impl<A, F> Fn for Box<F> where F: Fn<A> + ?Sized {}
15
```
16
17
The impls are parallel to these (relatively old) impls:
18
19
20
impl<A, F> FnOnce for &mut F where F: FnMut<A> + ?Sized {}
21
impl<A, F> FnMut for &mut F where F: FnMut<A> + ?Sized {}
22
impl<A, F> Fn for &mut F where F: Fn<A> + ?Sized {}
0 commit comments