[][src]Module btle::bytes

Structs

StaticBuf

Static byte buffer. StaticBuf<[u8; 16]> can store a [u8] array from 0-16 bytes for example. Unlike other static buffers, this does NOT reallocate if you out grow the internal buffer. If you try to request more bytes than its able to store, it will panic.

Enums

BufError
Endian

Traits

Storage

Objects that store and own bytes (Box<[u8]>, Vec<u8>, StaticBuf<[u8; 32]>, etc). This allows for generic byte storage types for byte buffers.

ToFromBytesEndian