Construct an iterator which produces no values.
use std::iter::empty; assert!(empty().next().is_none()); assert_eq!(empty().collect::<Vec>(), []);