Trait translate_storage::CatalogueReader [] [src]

pub trait CatalogueReader: Iterator<Item = Result<Unit, Error>> {
    fn target_language(&self) -> &LanguageRange<'static>;
}

Catalogue reader.

Defines common interface of catalogue readers. Read the units by simply iterating over the reader. The other methods are for the important metadata.

Required Methods

Implementors