Skip to main content

ComplexType

Trait ComplexType 

Source
pub trait ComplexType {
    const IS_ARRAY: bool;

    // Required methods
    fn header_size<T>(element_count: u32) -> usize
       where T: StorageFormat;
    fn value_entry_offset<T>(element_count: u32, pos: u32) -> usize
       where T: StorageFormat;
}
Expand description

Type of a complex jsonb value (array or object).

Required Associated Constants§

Required Methods§

Source

fn header_size<T>(element_count: u32) -> usize
where T: StorageFormat,

Calculates header size for this type.

Source

fn value_entry_offset<T>(element_count: u32, pos: u32) -> usize
where T: StorageFormat,

Calculates an offset to the given value entry.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§