Struct google_genomics1::Position[][src]

pub struct Position {
    pub position: Option<String>,
    pub reverse_strand: Option<bool>,
    pub reference_name: Option<String>,
}

An abstraction for referring to a genomic position, in relation to some already known reference. For now, represents a genomic position as a reference name, a base number on that reference (0-based), and a determination of forward or reverse strand.

This type is not used in any activity, and only used as part of another schema.

Fields

The 0-based offset from the start of the forward strand for that reference.

Whether this position is on the reverse strand, as opposed to the forward strand.

The name of the reference in whatever reference set is being used.

Trait Implementations

impl Default for Position
[src]

Returns the "default value" for a type. Read more

impl Clone for Position
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Position
[src]

Formats the value using the given formatter. Read more

impl Part for Position
[src]

Auto Trait Implementations

impl Send for Position

impl Sync for Position