Trait redox::io::Write [] [src]

pub trait Write {
    fn write(&mut self, buf: &[u8]) -> Option<usize>;

    fn write_fmt(&mut self, args: Arguments) -> Result<(), Error> { ... }
}

Types you can write

Required Methods

fn write(&mut self, buf: &[u8]) -> Option<usize>

Write to the file

Provided Methods

fn write_fmt(&mut self, args: Arguments) -> Result<(), Error>

Write a format to the file

Implementors