[][src]Trait mod_utilities::IOAdaptable

pub trait IOAdaptable {
    fn adapt_to_io(&mut self) -> IOAdaptor;
}

Allows a fmt::Write to be routed to an io::Write

See IOAdaptor for more details

Required methods

fn adapt_to_io(&mut self) -> IOAdaptor

Create a IOAdaptor for a fmt::Write

Loading content...

Implementors

impl<T> IOAdaptable for T where
    T: Write
[src]

Loading content...