Enum bio::io::gff::GffType [] [src]

pub enum GffType {
    GFF3,
    GFF2,
    GTF2,
    Any(u8u8),
}
[]

GffType

We have three format in the GFF family. The change is in the last field of GFF. For each type we have key value separator and field separator

Variants

GFF3
[]

Attribute format is key1=value, key2=value

GFF2
[]

Attribute format is key1 value; key2 value

GTF2
[]

Same as GFF2 just possible keyword and possible value change

Any(u8u8)
[]

Any, first field of tuple is key value separator, second is field separator

Trait Implementations

impl Copy for GffType
[src]

impl Clone for GffType
[src]

fn clone(&self) -> GffType[]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0
[]

Performs copy-assignment from source. Read more