Struct cortex_m_semihosting::hio::HStderr [−][src]
pub struct HStderr { /* fields omitted */ }Host's standard error
Methods
impl HStderr[src]
impl HStderrpub fn write_all(&mut self, buffer: &[u8]) -> Result<(), ()>[src]
pub fn write_all(&mut self, buffer: &[u8]) -> Result<(), ()>Attempts to write an entire buffer into this sink
Trait Implementations
impl Write for HStderr[src]
impl Write for HStderrfn write_str(&mut self, s: &str) -> Result[src]
fn write_str(&mut self, s: &str) -> ResultWrites a slice of bytes into this writer, returning whether the write succeeded. Read more
fn write_char(&mut self, c: char) -> Result<(), Error>1.1.0[src]
fn write_char(&mut self, c: char) -> Result<(), Error>1.1.0
[src]Writes a [char] into this writer, returning whether the write succeeded. Read more
fn write_fmt(&mut self, args: Arguments) -> Result<(), Error>1.0.0[src]
fn write_fmt(&mut self, args: Arguments) -> Result<(), Error>1.0.0
[src]Glue for usage of the [write!] macro with implementors of this trait. Read more