Home
last modified time | relevance | path

Searched defs:FormatWith (Results 1 – 1 of 1) sorted by relevance

/external/rust/crates/itertools/src/
Dformat.rs11 pub struct FormatWith<'a, I, F> { struct
13 /// FormatWith uses interior mutability because Display::fmt takes &self. argument
31 pub fn new_format<I, F>(iter: I, separator: &str, f: F) -> FormatWith<'_, I, F> in new_format() argument
50 impl<'a, I, F> fmt::Display for FormatWith<'a, I, F> implementation