Struct gapi_grpc::google::cloud::aiplatform::v1::dataset_service_client::DatasetServiceClient[][src]

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

Implementations

impl DatasetServiceClient<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> DatasetServiceClient<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 create_dataset(
    &mut self,
    request: impl IntoRequest<CreateDatasetRequest>
) -> Result<Response<Operation>, Status>
[src]

Creates a Dataset.

pub async fn get_dataset(
    &mut self,
    request: impl IntoRequest<GetDatasetRequest>
) -> Result<Response<Dataset>, Status>
[src]

Gets a Dataset.

pub async fn update_dataset(
    &mut self,
    request: impl IntoRequest<UpdateDatasetRequest>
) -> Result<Response<Dataset>, Status>
[src]

Updates a Dataset.

pub async fn list_datasets(
    &mut self,
    request: impl IntoRequest<ListDatasetsRequest>
) -> Result<Response<ListDatasetsResponse>, Status>
[src]

Lists Datasets in a Location.

pub async fn delete_dataset(
    &mut self,
    request: impl IntoRequest<DeleteDatasetRequest>
) -> Result<Response<Operation>, Status>
[src]

Deletes a Dataset.

pub async fn import_data(
    &mut self,
    request: impl IntoRequest<ImportDataRequest>
) -> Result<Response<Operation>, Status>
[src]

Imports data into a Dataset.

pub async fn export_data(
    &mut self,
    request: impl IntoRequest<ExportDataRequest>
) -> Result<Response<Operation>, Status>
[src]

Exports data from a Dataset.

pub async fn list_data_items(
    &mut self,
    request: impl IntoRequest<ListDataItemsRequest>
) -> Result<Response<ListDataItemsResponse>, Status>
[src]

Lists DataItems in a Dataset.

pub async fn get_annotation_spec(
    &mut self,
    request: impl IntoRequest<GetAnnotationSpecRequest>
) -> Result<Response<AnnotationSpec>, Status>
[src]

Gets an AnnotationSpec.

pub async fn list_annotations(
    &mut self,
    request: impl IntoRequest<ListAnnotationsRequest>
) -> Result<Response<ListAnnotationsResponse>, Status>
[src]

Lists Annotations belongs to a dataitem

Trait Implementations

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

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

Auto Trait Implementations

impl<T> !RefUnwindSafe for DatasetServiceClient<T>

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

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

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

impl<T> !UnwindSafe for DatasetServiceClient<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]