Struct google_genomics1::SearchAnnotationsRequest[][src]

pub struct SearchAnnotationsRequest {
    pub start: Option<String>,
    pub reference_id: Option<String>,
    pub end: Option<String>,
    pub page_size: Option<i32>,
    pub page_token: Option<String>,
    pub reference_name: Option<String>,
    pub annotation_set_ids: Option<Vec<String>>,
}

There is no detailed description.

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 start position of the range on the reference, 0-based inclusive. If specified, referenceId or referenceName must be specified. Defaults to 0.

The ID of the reference to query.

The end position of the range on the reference, 0-based exclusive. If referenceId or referenceName must be specified, Defaults to the length of the reference.

The maximum number of results to return in a single page. If unspecified, defaults to 256. The maximum value is 2048.

The continuation token, which is used to page through large result sets. To get the next page of results, set this parameter to the value of nextPageToken from the previous response.

The name of the reference to query, within the reference set associated with this query.

Required. The annotation sets to search within. The caller must have READ access to these annotation sets. All queried annotation sets must have the same type.

Trait Implementations

impl Default for SearchAnnotationsRequest
[src]

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

impl Clone for SearchAnnotationsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SearchAnnotationsRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for SearchAnnotationsRequest
[src]

Auto Trait Implementations