tbytes 0.1.0-alpha1

A tiny library for reading and writing typed data into buffers
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! # Errors.
//!
//! We currently emit quite a few errors. The most important one [`TBytesError::OutOfBounds`]
//! emitted when reader/writer reached the end of the buffer.  

/// T-Bytes errors.
#[derive(Clone, Copy, Debug)]
pub enum TBytesError {
    /// Buffer exhausted.
    OutOfBounds,
}