pub trait Write {
    type Error;

    // Required method
    fn write_fmt(&mut self, args: Arguments<'_>) -> Result<(), Self::Error>;
}

Required Associated Types§

Required Methods§

source

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

Implementations on Foreign Types§

source§

impl Write for String

§

type Error = Error

source§

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

Implementors§

source§

impl Write for PyWriter<'_>

source§

impl<W> Write for IoWriter<W>where W: Write,

§

type Error = Error