diff options
author | Daniel Schadt <kingdread@gmx.de> | 2020-05-02 14:23:07 +0200 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2020-05-02 14:23:07 +0200 |
commit | cea9d932c57c065492f900b9c465423f5a529a2a (patch) | |
tree | 776164ef4e58c898fbc4f5454c24d119d6ed6172 | |
parent | 8b14355557ca7bf19318d0f8d4b54ce439cdc8c8 (diff) | |
download | evtclib-cea9d932c57c065492f900b9c465423f5a529a2a.tar.gz evtclib-cea9d932c57c065492f900b9c465423f5a529a2a.tar.bz2 evtclib-cea9d932c57c065492f900b9c465423f5a529a2a.zip |
add a note about writing evtc files
-rw-r--r-- | src/lib.rs | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -53,6 +53,18 @@ //! //! Make sure to take a look at the note on "Buffering" in the [parser //! module](raw/parser/index.html#buffering) in order to increase the speed of your application. +//! +//! # Writing evtc Files +//! +//! Currently, `evtclib` does not provide a way to output or modify evtc files. This is for two +//! reasons: +//! +//! * The only sensible source for logs is the arcdps addon itself, most applications only consume +//! them. +//! * The library was needed for reading support, and writing support has never been a priority. +//! +//! While there are legitimate use cases for writing/modification support, they are currently not +//! implemented (but might be in a future version). use std::convert::TryFrom; use std::marker::PhantomData; |