Trait hyper_scripter::util::writable::Writable
source · pub trait Writable {
type Fmt: Write;
type IO: Write;
// Required methods
fn as_fmt(&mut self) -> Option<&mut Self::Fmt>;
fn as_io(&mut self) -> Option<&mut Self::IO>;
}