Struct google_genomics1::StreamVariantsRequest [] [src]

pub struct StreamVariantsRequest {
    pub start: Option<String>,
    pub variant_set_id: Option<String>,
    pub end: Option<String>,
    pub reference_name: Option<String>,
    pub project_id: Option<String>,
    pub call_set_ids: Option<Vec<String>>,
}

The stream variants request.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

The beginning of the window (0-based, inclusive) for which overlapping variants should be returned.

The variant set ID from which to stream variants.

The end of the window (0-based, exclusive) for which overlapping variants should be returned.

Required. Only return variants in this reference sequence.

The Google Cloud project ID which will be billed for this access. The caller must have WRITE access to this project. Required.

Only return variant calls which belong to call sets with these IDs. Leaving this blank returns all variant calls.

Trait Implementations

impl Debug for StreamVariantsRequest
[src]

Formats the value using the given formatter.

impl Clone for StreamVariantsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for StreamVariantsRequest
[src]

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

impl RequestValue for StreamVariantsRequest
[src]