edjr 0.1.1

Elite Dangerous Journal Reader
Documentation
1
2
3
4
5
use crate::{entry::JournalEntry, error::JournalReadError};

pub trait AsyncRead {
    async fn read_all(&mut self) -> Result<Vec<JournalEntry>, JournalReadError>;
}