Struct gapi_grpc::google::genomics::v1::SearchReadsResponse[][src]

pub struct SearchReadsResponse {
    pub alignments: Vec<Read>,
    pub next_page_token: String,
}

The read search response.

Fields

alignments: Vec<Read>

The list of matching alignments sorted by mapped genomic coordinate, if any, ascending in position within the same reference. Unmapped reads, which have no position, are returned contiguously and are sorted in ascending lexicographic order by fragment name.

next_page_token: String

The continuation token, which is used to page through large result sets. Provide this value in a subsequent request to return the next page of results. This field will be empty if there aren’t any additional results.

Trait Implementations

impl Clone for SearchReadsResponse[src]

impl Debug for SearchReadsResponse[src]

impl Default for SearchReadsResponse[src]

impl Message for SearchReadsResponse[src]

impl PartialEq<SearchReadsResponse> for SearchReadsResponse[src]

impl StructuralPartialEq for SearchReadsResponse[src]

Auto Trait Implementations

impl RefUnwindSafe for SearchReadsResponse

impl Send for SearchReadsResponse

impl Sync for SearchReadsResponse

impl Unpin for SearchReadsResponse

impl UnwindSafe for SearchReadsResponse

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]