pub struct Writer<'a> { /* private fields */ }
Expand description
Xen console writer
Implementations
Trait Implementations
sourceimpl<'a> Write for Writer<'a>
impl<'a> Write for Writer<'a>
sourcefn write_str(&mut self, s: &str) -> Result
fn write_str(&mut self, s: &str) -> Result
Writes a string slice into this writer, returning whether the write succeeded. Read more
1.1.0fn write_char(&mut self, c: char) -> Result<(), Error>
fn write_char(&mut self, c: char) -> Result<(), Error>
Writes a [char
] into this writer, returning whether the write succeeded. Read more
Auto Trait Implementations
impl<'a> RefUnwindSafe for Writer<'a>
impl<'a> Send for Writer<'a>
impl<'a> Sync for Writer<'a>
impl<'a> Unpin for Writer<'a>
impl<'a> !UnwindSafe for Writer<'a>
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more