Trait SeqDataFormat

Source
pub trait SeqDataFormat {
    const MAGIC: &'static [u8];
    const HEADER_SIZE: usize;
}
Expand description

Format configuration for SeqData

Required Associated Constants§

Source

const MAGIC: &'static [u8]

Magic bytes. can be empty

Source

const HEADER_SIZE: usize

The size of the header in bytes

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§