Struct google_genomics1::SearchReferencesRequest[][src]

pub struct SearchReferencesRequest {
    pub md5checksums: Option<Vec<String>>,
    pub page_token: Option<String>,
    pub reference_set_id: Option<String>,
    pub accessions: Option<Vec<String>>,
    pub page_size: Option<i32>,
}

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

If present, return references for which the md5checksum matches exactly.

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.

If present, return only references which belong to this reference set.

If present, return references for which a prefix of any of sourceAccessions match any of these strings. Accession numbers typically have a main number and a version, for example GCF_000001405.26.

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

Trait Implementations

impl Default for SearchReferencesRequest
[src]

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

impl Clone for SearchReferencesRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SearchReferencesRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for SearchReferencesRequest
[src]

Auto Trait Implementations