Trait indexed_file::Indexable[][src]

pub trait Indexable {
    fn get_index(&self) -> &Index;

    fn total_lines(&self) -> usize { ... }
fn get_index_byte_len(&self) -> usize { ... } }

Required methods

Returns a reference to the files index.

Provided methods

Returns the total amount of lines in the file without the lines used by the index.

Implementors