pub trait Header {
    fn header_size() -> usize;
}
Expand description

Defined for data structures that contain a header.

Required methods

Return the size in bytes of the data structure header.

Implementors