[][src]Trait mod_utilities::FMTAdaptable

pub trait FMTAdaptable {
    fn adapt_to_fmt(&mut self) -> FMTAdaptor;
}

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

See FMTAdaptor for more details

Required methods

fn adapt_to_fmt(&mut self) -> FMTAdaptor

Create a FMTAdaptor for an io::Write

Loading content...

Implementors

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

Loading content...