biodream 0.2.7

Zero-copy, streaming-capable toolkit for reading and writing BIOPAC AcqKnowledge (.acq) files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Pure domain types for biodream.
//!
//! These types carry the semantics of physiological recordings — channels with
//! samples, markers with timestamps, metadata headers — with zero knowledge of
//! binary layout or I/O. All types are `no_std` compatible with `alloc`.

mod channel;
mod datafile;
mod journal;
mod marker;
mod metadata;

pub use channel::{Channel, ChannelData, ChannelMetadata};
pub use datafile::Datafile;
pub use journal::Journal;
pub use marker::{Marker, MarkerStyle, Timestamp};
pub use metadata::{AcquisitionDateTime, ByteOrder, FileRevision, GraphMetadata};