exhaust 0.2.3

Trait and derive macro for working with all possible values of a type (exhaustive enumeration).
Documentation
//! 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 for primitive types.
mod array;
mod bool;
mod primitive;

// Impls organized by the corresponding standard library module.
mod core_cell;
mod core_cmp;
mod core_convert;
mod core_fmt;
mod core_future;
mod core_hash;
mod core_marker;
mod core_num;
mod core_ops;
mod core_option;
mod core_sync;
//  core::pin::Pin is handled separately for each pinnable smart pointer.
mod core_result;
mod core_task;

#[cfg(feature = "alloc")]
mod alloc_impls;

#[cfg(feature = "std")]
mod std_impls;