MCPcopy Create free account
hub / github.com/Ruddle/Fomos / write_str

Method write_str

bootloader/kernel/src/framebuffer.rs:155–161  ·  view source on GitHub ↗
(&mut self, s: &str)

Source from the content-addressed store, hash-verified

153
154impl 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}
163use alloc::{slice, vec::Vec};
164

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected