impl Debug for SplitWhitespace.

This commit is contained in:
Clar Charr 2017-09-03 19:13:01 -04:00
parent 981ce7d8dd
commit 4260e4395e

View File

@ -26,7 +26,7 @@ use core::str::Split;
/// [`split_whitespace`]: ../../std/primitive.str.html#method.split_whitespace
/// [`str`]: ../../std/primitive.str.html
#[stable(feature = "split_whitespace", since = "1.1.0")]
#[derive(Clone)]
#[derive(Clone, Debug)]
pub struct SplitWhitespace<'a> {
inner: Filter<Split<'a, IsWhitespace>, IsNotEmpty>,
}