Trait std::fmt::WriteStable [-] [+] [src]

pub trait Write {
    fn write_str(&mut self, s: &str) -> Result<(), Error>;

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

A collection of methods that are required to format a message into a stream.

This trait is the type which this modules requires when formatting information. This is similar to the standard library's io::Write trait, but it is only intended for use in libcore.

This trait should generally not be implemented by consumers of the standard library. The write! macro accepts an instance of io::Write, and the io::Write trait is favored over implementing this trait.

Required Methods

fn write_str(&mut self, s: &str) -> Result<(), Error>

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

This method can only succeed if the entire byte slice was successfully written, and this method will not return until all data has been written or an error occurs.

Errors

This function will return an instance of FormatError on error.

Provided Methods

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

Glue for usage of the write! macro with implementers of this trait.

This method should generally not be invoked manually, but rather through the write! macro itself.

Implementors