1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//! Implementations of [`Exhaust`] for standard library types.
//!
//! The public contents of this module are just the corresponding structs implementing
//! [`Iterator`]. These need to be public, but should mostly be considered an implementation
//! detail and not need to be used explicitly.
//!
//! [`Exhaust`]: crate::Exhaust
// Impls organized by the corresponding standard library module.
pub use *;
// core::pin::Pin is handled separately for each pinnable smart pointer.
pub use *;
pub use *;
// TODO: The following implementations might be missing:
// core::iter::* (combinatorial explosion fun!)
// Iterators for std library types *not* in core::iter
// `OnceCell` & `OnceLock`
// core::fmt::Alignment
// core::fmt::Error (do we want to impl for Error types in general?)
// core::ops::{Bound, ControlFlow, Range*}