Struct gapi_grpc::google::cloud::translation::v3::GetSupportedLanguagesRequest[][src]

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-number-or-id} or projects/{project-number-or-id}/locations/{location-id}.

For global calls, use projects/{project-number-or-id}/locations/global or projects/{project-number-or-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:

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

impl RefUnwindSafe for GetSupportedLanguagesRequest

impl Send for GetSupportedLanguagesRequest

impl Sync for GetSupportedLanguagesRequest

impl Unpin for GetSupportedLanguagesRequest

impl UnwindSafe for GetSupportedLanguagesRequest

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]