Struct google_genomics1::ReferenceBound[][src]

pub struct ReferenceBound {
    pub upper_bound: Option<String>,
    pub reference_name: Option<String>,
}

ReferenceBound records an upper bound for the starting coordinate of variants in a particular reference.

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

Fields

An upper bound (inclusive) on the starting coordinate of any variant in the reference sequence.

The name of the reference associated with this reference bound.

Trait Implementations

impl Default for ReferenceBound
[src]

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

impl Clone for ReferenceBound
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ReferenceBound
[src]

Formats the value using the given formatter. Read more

impl Part for ReferenceBound
[src]

Auto Trait Implementations