Trait dbkit_engine::types::ValueInfo [] [src]

pub trait ValueInfo {
    type Store;

    const ENUM: Type;
    const DEEP_COPY: bool = false;
    fn size_of(&self) -> usize { ... }
}

Trait providing higher level metadata about types

Associated Types

The native Rust type backing the column vector

Associated Constants

Symbolic type

Do this value require deep copying of data (stored in the `Column' arena)

Provided Methods

Implementors