[][src]Struct gcp_client::google::cloud::translation::v3beta1::GetSupportedLanguagesRequest

pub struct GetSupportedLanguagesRequest {
    pub parent: String,
    pub display_language_code: String,
    pub model: String,
}

The request message for discovering supported languages.

Fields

parent: String

Required. Project or location to make a call. Must refer to a caller's project.

Format: projects/{project-id} or projects/{project-id}/locations/{location-id}.

For global calls, use projects/{project-id}/locations/global or projects/{project-id}.

Non-global location is required for AutoML models.

Only models within the same region (have same location-id) can be used, otherwise an INVALID_ARGUMENT (400) error is returned.

display_language_code: String

Optional. The language to use to return localized, human readable names of supported languages. If missing, then display names are not returned in a response.

model: String

Optional. Get supported languages of this model.

The format depends on model type:

  • AutoML Translation models: projects/{project-id}/locations/{location-id}/models/{model-id}

  • General (built-in) models: projects/{project-id}/locations/{location-id}/models/general/nmt, projects/{project-id}/locations/{location-id}/models/general/base

Returns languages supported by the specified model. If missing, we get supported languages of Google general base (PBMT) model.

Trait Implementations

impl Clone for GetSupportedLanguagesRequest[src]

impl Debug for GetSupportedLanguagesRequest[src]

impl Default for GetSupportedLanguagesRequest[src]

impl Message for GetSupportedLanguagesRequest[src]

impl PartialEq<GetSupportedLanguagesRequest> for GetSupportedLanguagesRequest[src]

impl StructuralPartialEq for GetSupportedLanguagesRequest[src]

Auto Trait Implementations

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]