wfdb/
lib.rs

1//! __WFDB__ (Waveform Database) library for pure Rust.
2//!
3//! This library provides _decoding_ ~~and _encoding_~~(maybe in the future) support for
4//! `PhysioNet`'s  [WFDB](https://physionet.org/content/wfdb) format files.
5
6// pub mod annotation;
7pub mod header;
8pub mod record;
9pub mod signal;
10
11// Internal module declaration
12mod common;
13mod error;
14
15pub use common::*;
16pub use error::Error;
17pub use header::{Header, Metadata, SegmentInfo, SignalInfo};
18pub use record::{MultiSignalReader, Record, SignalReader};