exhaust/impls/
core_convert.rs1use core::iter;
2
3use crate::Exhaust;
4
5impl Exhaust for core::convert::Infallible {
6 type Iter = iter::Empty<core::convert::Infallible>;
7 fn exhaust_factories() -> Self::Iter {
8 iter::empty()
9 }
10 crate::patterns::factory_is_self!();
11}