Home
last modified time | relevance | path

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

/external/rust/crates/itertools/src/
Dformat.rs11 pub struct FormatWith<'a, I, F> { struct
31 pub fn new_format<I, F>(iter: I, separator: &str, f: F) -> FormatWith<'_, I, F> in new_format() argument
35 FormatWith { in new_format()
50 impl<'a, I, F> fmt::Display for FormatWith<'a, I, F> implementation
Dlib.rs120 pub use crate::format::{Format, FormatWith};
1889 fn format_with<F>(self, sep: &str, format: F) -> FormatWith<Self, F> in format_with()