(&mut self, s: &str)
| 153 | |
| 154 | impl fmt::Write for FrameBufferWriter { |
| 155 | fn write_str(&mut self, s: &str) -> fmt::Result { |
| 156 | // for c in s.chars() { |
| 157 | // self.write_char(c); |
| 158 | // } |
| 159 | |
| 160 | Ok(()) |
| 161 | } |
| 162 | } |
| 163 | use alloc::{slice, vec::Vec}; |
| 164 |
nothing calls this directly
no outgoing calls
no test coverage detected