[][src]Struct gcp_client::google::cloud::translation::v3::translation_service_client::TranslationServiceClient

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

Provides natural language translation operations.

Implementations

impl<T> TranslationServiceClient<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 translate_text<'_>(
    &'_ mut self,
    request: impl IntoRequest<TranslateTextRequest>
) -> Result<Response<TranslateTextResponse>, Status>
[src]

Translates input text and returns translated text.

pub async fn detect_language<'_>(
    &'_ mut self,
    request: impl IntoRequest<DetectLanguageRequest>
) -> Result<Response<DetectLanguageResponse>, Status>
[src]

Detects the language of text within a request.

pub async fn get_supported_languages<'_>(
    &'_ mut self,
    request: impl IntoRequest<GetSupportedLanguagesRequest>
) -> Result<Response<SupportedLanguages>, Status>
[src]

Returns a list of supported languages for translation.

pub async fn batch_translate_text<'_>(
    &'_ mut self,
    request: impl IntoRequest<BatchTranslateTextRequest>
) -> Result<Response<Operation>, Status>
[src]

Translates a large volume of text in asynchronous batch mode. This function provides real-time output as the inputs are being processed. If caller cancels a request, the partial results (for an input file, it's all or nothing) may still be available on the specified output location.

This call returns immediately and you can use google.longrunning.Operation.name to poll the status of the call.

pub async fn create_glossary<'_>(
    &'_ mut self,
    request: impl IntoRequest<CreateGlossaryRequest>
) -> Result<Response<Operation>, Status>
[src]

Creates a glossary and returns the long-running operation. Returns NOT_FOUND, if the project doesn't exist.

pub async fn list_glossaries<'_>(
    &'_ mut self,
    request: impl IntoRequest<ListGlossariesRequest>
) -> Result<Response<ListGlossariesResponse>, Status>
[src]

Lists glossaries in a project. Returns NOT_FOUND, if the project doesn't exist.

pub async fn get_glossary<'_>(
    &'_ mut self,
    request: impl IntoRequest<GetGlossaryRequest>
) -> Result<Response<Glossary>, Status>
[src]

Gets a glossary. Returns NOT_FOUND, if the glossary doesn't exist.

pub async fn delete_glossary<'_>(
    &'_ mut self,
    request: impl IntoRequest<DeleteGlossaryRequest>
) -> Result<Response<Operation>, Status>
[src]

Deletes a glossary, or cancels glossary construction if the glossary isn't created yet. Returns NOT_FOUND, if the glossary doesn't exist.

Trait Implementations

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

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

Auto Trait Implementations

impl<T> !RefUnwindSafe for TranslationServiceClient<T>

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

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

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

impl<T> !UnwindSafe for TranslationServiceClient<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, 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>, 

impl<T> WithSubscriber for T[src]