Formatter for str
| 592 | |
| 593 | /// Formatter for str |
| 594 | trait Formatter { |
| 595 | fn after_spaces(&self, spaces: usize) -> String; |
| 596 | fn before_spaces(&self, spaces: usize) -> String; |
| 597 | } |
| 598 | |
| 599 | impl Formatter for str { |
| 600 | fn after_spaces(&self, spaces: usize) -> String { |
nothing calls this directly
no outgoing calls
no test coverage detected