diff --git a/src/format/mod.rs b/src/format/mod.rs index 565e648d52..a0a9333f5f 100644 --- a/src/format/mod.rs +++ b/src/format/mod.rs @@ -334,13 +334,15 @@ const BAD_FORMAT: ParseError = ParseError(ParseErrorKind::BadFormat); /// Tries to format given arguments with given formatting items. /// Internally used by `DelayedFormat`. -pub fn format<'a>( +pub fn format<'a, I>( w: &mut fmt::Formatter, date: Option<&NaiveDate>, time: Option<&NaiveTime>, off: Option<&(String, FixedOffset)>, - items: impl Iterator>, -) -> fmt::Result { + items: I, +) -> fmt::Result + where I: Iterator> +{ // full and abbreviated month and weekday names static SHORT_MONTHS: [&'static str; 12] = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];