pub trait IntoWriterwhere
Self: Sealed,{
type Ok;
type Writer: Writer<Ok = Self::Ok>;
// Required method
fn into_writer(self) -> Self::Writer;
}Expand description
Coerce a type into a Writer.
Required Associated Types§
Required Methods§
Sourcefn into_writer(self) -> Self::Writer
fn into_writer(self) -> Self::Writer
Convert the type into a writer.