Struct gapi_grpc::google::genomics::v1::reference_service_v1_client::ReferenceServiceV1Client[][src]

pub struct ReferenceServiceV1Client<T> { /* fields omitted */ }

Implementations

impl ReferenceServiceV1Client<Channel>[src]

pub async fn connect<D>(dst: D) -> Result<Self, Error> where
    D: TryInto<Endpoint>,
    D::Error: Into<StdError>, 
[src]

Attempt to create a new client by connecting to a given endpoint.

impl<T> ReferenceServiceV1Client<T> where
    T: GrpcService<BoxBody>,
    T::ResponseBody: Body + HttpBody + Send + 'static,
    T::Error: Into<StdError>,
    <T::ResponseBody as HttpBody>::Error: Into<StdError> + Send
[src]

pub fn new(inner: T) -> Self[src]

pub fn with_interceptor(inner: T, interceptor: impl Into<Interceptor>) -> Self[src]

pub async fn search_reference_sets(
    &mut self,
    request: impl IntoRequest<SearchReferenceSetsRequest>
) -> Result<Response<SearchReferenceSetsResponse>, Status>
[src]

Searches for reference sets which match the given criteria.

For the definitions of references and other genomics resources, see Fundamentals of Google Genomics

Implements GlobalAllianceApi.searchReferenceSets

pub async fn get_reference_set(
    &mut self,
    request: impl IntoRequest<GetReferenceSetRequest>
) -> Result<Response<ReferenceSet>, Status>
[src]

Gets a reference set.

For the definitions of references and other genomics resources, see Fundamentals of Google Genomics

Implements GlobalAllianceApi.getReferenceSet.

pub async fn search_references(
    &mut self,
    request: impl IntoRequest<SearchReferencesRequest>
) -> Result<Response<SearchReferencesResponse>, Status>
[src]

Searches for references which match the given criteria.

For the definitions of references and other genomics resources, see Fundamentals of Google Genomics

Implements GlobalAllianceApi.searchReferences.

pub async fn get_reference(
    &mut self,
    request: impl IntoRequest<GetReferenceRequest>
) -> Result<Response<Reference>, Status>
[src]

Gets a reference.

For the definitions of references and other genomics resources, see Fundamentals of Google Genomics

Implements GlobalAllianceApi.getReference.

pub async fn list_bases(
    &mut self,
    request: impl IntoRequest<ListBasesRequest>
) -> Result<Response<ListBasesResponse>, Status>
[src]

Lists the bases in a reference, optionally restricted to a range.

For the definitions of references and other genomics resources, see Fundamentals of Google Genomics

Implements GlobalAllianceApi.getReferenceBases.

Trait Implementations

impl<T: Clone> Clone for ReferenceServiceV1Client<T>[src]

impl<T> Debug for ReferenceServiceV1Client<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for ReferenceServiceV1Client<T>

impl<T> Send for ReferenceServiceV1Client<T> where
    T: Send

impl<T> Sync for ReferenceServiceV1Client<T> where
    T: Sync

impl<T> Unpin for ReferenceServiceV1Client<T> where
    T: Unpin

impl<T> !UnwindSafe for ReferenceServiceV1Client<T>

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]