[][src]Trait ripgrep_all::adapters::FileAdapter

pub trait FileAdapter: GetMetadata {
    fn adapt(&self, a: AdaptInfo) -> Fallible<()>;
}

Required methods

fn adapt(&self, a: AdaptInfo) -> Fallible<()>

Loading content...

Implementors

impl FileAdapter for FFmpegAdapter[src]

impl FileAdapter for PdfPagesAdapter[src]

A pdf is basically converted to a zip that has Page X.png files. This way, something like tesseract can process the pages individually

impl FileAdapter for SqliteAdapter[src]

impl FileAdapter for TarAdapter[src]

impl FileAdapter for ZipAdapter[src]

impl<T> FileAdapter for T where
    T: SpawningFileAdapter
[src]

Loading content...