[][src]Trait pdf_extract::ConvertToFmt

pub trait ConvertToFmt {
    type Writer: Write;
    fn convert(self) -> Self::Writer;
}

Associated Types

Loading content...

Required methods

fn convert(self) -> Self::Writer

Loading content...

Implementations on Foreign Types

impl<'a> ConvertToFmt for &'a mut String[src]

type Writer = &'a mut String

impl<'a> ConvertToFmt for &'a mut dyn Write[src]

type Writer = WriteAdapter<Self>

impl<'a> ConvertToFmt for &'a mut File[src]

type Writer = WriteAdapter<Self>

Loading content...

Implementors

Loading content...