ed-journals 0.13.0

Provides models for representing and parsing elite dangerous journal files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Collection of iterators for iterating over log entries. These come in both [sync](LogIter) and
//! [async](AsyncIter) variants and also have raw variants if you want to handle the JSON lines
//! yourself. The [LogPath] model is used to order the path names of logs and ensure they follow
//! the expected format.

mod error;
mod models;

pub use error::LogIOError;
pub use models::log_iter::LogIter;
pub use models::log_path::LogPath;

#[cfg(feature = "asynchronous")]
pub use models::async_iter::AsyncIter;