pub fn load_files_into_memory<F>(
    book: &Book,
    dest: &mut Files<String>,
    filter: F
) -> Vec<FileId>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A>where
    A: Allocator,
where
    F: Fn(&Path) -> bool,
Expand description

A helper for reading the chapters of a Book into memory, filtering out files using the given filter.