pub trait ByteArrayType: 'static + Send + Sync + ByteArrayTypeSealed {
    type Offset: OffsetSizeTrait;
    type Native: ByteArrayNativeType + AsRef<[u8]> + ?Sized;

    const PREFIX: &'static str;
    const DATA_TYPE: DataType;
}
Expand description

A trait over the variable-size byte array types

See Variable Size Binary Layout

Required Associated Types

Required Associated Constants

“Binary” or “String”, for use in error messages

Implementors