Lines Matching refs:DelayedFormat
719 pub struct DelayedFormat<I> { struct
733 impl<'a, I: Iterator<Item = B> + Clone, B: Borrow<Item<'a>>> DelayedFormat<I> { implementation
735 pub fn new(date: Option<NaiveDate>, time: Option<NaiveTime>, items: I) -> DelayedFormat<I> { in new()
736 DelayedFormat { date: date, time: time, off: None, items: items, locale: None } in new()
745 ) -> DelayedFormat<I> in new_with_offset()
750 DelayedFormat { in new_with_offset()
766 ) -> DelayedFormat<I> { in new_with_locale()
767 DelayedFormat { date: date, time: time, off: None, items: items, locale: Some(locale) } in new_with_locale()
778 ) -> DelayedFormat<I> in new_with_offset_and_locale()
783 DelayedFormat { in new_with_offset_and_locale()
794 impl<'a, I: Iterator<Item = B> + Clone, B: Borrow<Item<'a>>> fmt::Display for DelayedFormat<I> { implementation