Trait Output

Source
pub trait Output {
    type Options;
    type Error;

    // Required method
    fn to_writer<W: Write>(
        self,
        options: Self::Options,
        writter: W,
    ) -> Result<(), Self::Error>;
}

Required Associated Types§

Required Methods§

Source

fn to_writer<W: Write>( self, options: Self::Options, writter: W, ) -> Result<(), Self::Error>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§