(&mut self, s: &str)
| 114 | |
| 115 | impl fmt::Write for Writer { |
| 116 | fn write_str(&mut self, s: &str) -> fmt::Result { |
| 117 | self.write_string(s); |
| 118 | Ok(()) |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | use lazy_static::lazy_static; |
nothing calls this directly
no test coverage detected