Struct kernel::debug::DebugWriter [] [src]

pub struct DebugWriter {
    driver: Option<&'static Driver>,
    pub grant: Option<*mut u8>,
    output_buffer: [u8; 1024],
    output_head: usize,
    output_tail: usize,
    output_active_len: usize,
    count: usize,
}

Fields

Methods

impl DebugWriter
[src]

[src]

Convenience method that writes (end-start) bytes from bytes into the debug buffer

[src]

[src]

Trait Implementations

impl Write for DebugWriter
[src]

[src]

Writes a slice of bytes into this writer, returning whether the write succeeded. Read more

1.1.0
[src]

Writes a [char] into this writer, returning whether the write succeeded. Read more

1.0.0
[src]

Glue for usage of the [write!] macro with implementors of this trait. Read more