Lines Matching defs:fmt
173 impl std::fmt::Display for ValueRange {
174 fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
175 ok!(self.start_inclusive.fmt(f));
177 ok!("..=".fmt(f));
178 ok!(self.end_inclusive.fmt(f));
184 impl std::fmt::Debug for ValueRange {
185 fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {