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

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

The stream variants request.

Fields

project_id: String

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

variant_set_id: String

The variant set ID from which to stream variants.

call_set_ids: Vec<String>

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

reference_name: String

Required. Only return variants in this reference sequence.

start: i64

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

end: i64

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

Trait Implementations

impl Clone for StreamVariantsRequest[src]

impl Debug for StreamVariantsRequest[src]

impl Default for StreamVariantsRequest[src]

impl Message for StreamVariantsRequest[src]

impl PartialEq<StreamVariantsRequest> for StreamVariantsRequest[src]

impl StructuralPartialEq for StreamVariantsRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for StreamVariantsRequest

impl Send for StreamVariantsRequest

impl Sync for StreamVariantsRequest

impl Unpin for StreamVariantsRequest

impl UnwindSafe for StreamVariantsRequest

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]