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

pub enum GffType {
    GFF3,
    GFF2,
    GTF2,
    Any(u8u8u8),
}

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=value1,value2

GFF2

Attribute format is: key1 value; key2 value1; key2 value2

GTF2

Same as GFF2 just possible keyword and possible value change

Any(u8u8u8)

Any, first field of tuple separates key from value, second field separates multiple key value pairs, and third field separates multiple values for the same key

Trait Implementations

impl Copy for GffType[src]

impl Clone for GffType[src]

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

Performs copy-assignment from source. Read more

impl Debug for GffType[src]

Auto Trait Implementations

impl Send for GffType

impl Unpin for GffType

impl Sync for GffType

impl UnwindSafe for GffType

impl RefUnwindSafe for GffType

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]