wfdb 0.1.6

A library for decoding and encoding Waveform Database format files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Header parsing and manipulation.
//!
//! This module handles reading and parsing of WFDB header files (.hea).

mod common;
mod metadata;
mod segment_info;
mod signal_info;

pub use common::{Header, Specifications};
pub use metadata::Metadata;
pub use segment_info::SegmentInfo;
pub use signal_info::SignalInfo;