1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/// A GFF record field.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum Field {
    /// The reference sequence name.
    ReferenceSequenceName,
    /// The source.
    Source,
    /// The feature type.
    Type,
    /// The start position.
    Start,
    /// The end position.
    End,
    /// The score.
    Score,
    /// The strand.
    Strand,
    /// The phase.
    Phase,
    /// The attributes.
    Attributes,
}