Struct google_genomics1::Range[][src]

pub struct Range {
    pub start: Option<String>,
    pub end: Option<String>,
    pub reference_name: Option<String>,
}

A 0-based half-open genomic coordinate range for search requests.

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

Fields

The start position of the range on the reference, 0-based inclusive.

The end position of the range on the reference, 0-based exclusive.

The reference sequence name, for example chr1, 1, or chrX.

Trait Implementations

impl Default for Range
[src]

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

impl Clone for Range
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Range
[src]

Formats the value using the given formatter. Read more

impl Part for Range
[src]

Auto Trait Implementations

impl Send for Range

impl Sync for Range