[][src]Struct google_translate2::TranslationsResource

pub struct TranslationsResource {
    pub detected_source_language: Option<String>,
    pub model: Option<String>,
    pub translated_text: Option<String>,
}

There is no detailed description.

This type is not used in any activity, and only used as part of another schema.

Fields

detected_source_language: Option<String>

The source language of the initial request, detected automatically, if no source language was passed within the initial request. If the source language was passed, auto-detection of the language will not occur and this field will be empty.

model: Option<String>

The model type used for this translation. Valid values are listed in public documentation. Can be different from requested model. Present only if specific model type was explicitly requested.

translated_text: Option<String>

Text translated into the target language.

Trait Implementations

impl Part for TranslationsResource[src]

impl Default for TranslationsResource[src]

impl Clone for TranslationsResource[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for TranslationsResource[src]

impl Serialize for TranslationsResource[src]

impl<'de> Deserialize<'de> for TranslationsResource[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]