usestd::path::PathBuf;usesuper::entry::Entry;usesuper::located::Located;/// The output of parsing one journal file. `path` identifies the source;
/// `entries` carries the flat stream of records in parse order, each
/// wrapped with its source line.
#[derive(Debug, Clone)]pubstructFile{pubpath: PathBuf,
pubentries:Vec<Located<Entry>>,
}