pub trait Indexed: Inner {
    fn idx(&self) -> Option<usize>;
    fn idx_mut(&mut self) -> &mut Option<usize>;
}
Expand description

An inner VCF header map value with an IDX field.

Required Methods§

Returns the index of the ID in the dictionary of strings.

Returns a mutable reference to the index.

Implementors§