pub trait Inner: Sized {
    type Id: Display;
    type StandardTag: Standard;
    type Builder: Inner<Self>;
}
Expand description

An inner VCF header map value.

Required Associated Types

The ID type.

The standard tag type.

The builder type.

Implementors