pub trait StorageFormat {
    const IS_LARGE: bool;
    const OFFSET_SIZE: u8;
    const KEY_ENTRY_SIZE: u8 = _;
    const VALUE_ENTRY_SIZE: u8 = _;

    // Required method
    fn eat_offset(buf: &mut ParseBuf<'_>) -> u32;
}
Available on crate feature binlog only.
Expand description

JSONB storage format for objects and arrays. See ComplexType.

Required Associated Constants§

source

const IS_LARGE: bool

source

const OFFSET_SIZE: u8

The size of offset or size fields.

Provided Associated Constants§

Required Methods§

source

fn eat_offset(buf: &mut ParseBuf<'_>) -> u32

Object Safety§

This trait is not object safe.

Implementors§