Lines Matching defs:fmt
30 pub fn ansi(&self) -> impl std::fmt::Display + '_ {
295 impl std::fmt::Display for StyledStr {
296 fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
298 ok!(std::fmt::Display::fmt(content, f));
311 impl std::fmt::Display for AnsiDisplay<'_> {
312 fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
317 .map_err(|_| std::fmt::Error));
319 let buffer = ok!(String::from_utf8(buffer).map_err(|_| std::fmt::Error));
320 ok!(std::fmt::Display::fmt(&buffer, f));