meterbus-wired-datalink 0.0.1

Wired M-Bus datalink primitives and codecs
Documentation
1
2
3
4
5
6
7
8
//! Frame decoders.
//!
//! Use [`exact`] when a slice contains exactly one frame. Use [`stream`] for
//! arbitrary chunks, split frames, or several frames in one chunk. Both return
//! the crate-level [`Frame`](crate::Frame) type.

pub mod exact;
pub mod stream;