Struct google_jobs4::api::CompletionResult[][src]

pub struct CompletionResult {
    pub image_uri: Option<String>,
    pub suggestion: Option<String>,
    pub type_: Option<String>,
}

Resource that represents completion results.

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

Fields

image_uri: Option<String>

The URI of the company image for COMPANY_NAME.

suggestion: Option<String>

The suggestion for the query.

type_: Option<String>

The completion topic.

Trait Implementations

impl Clone for CompletionResult[src]

impl Debug for CompletionResult[src]

impl Default for CompletionResult[src]

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

impl Part for CompletionResult[src]

impl Serialize for CompletionResult[src]

Auto Trait Implementations

impl RefUnwindSafe for CompletionResult[src]

impl Send for CompletionResult[src]

impl Sync for CompletionResult[src]

impl Unpin for CompletionResult[src]

impl UnwindSafe for CompletionResult[src]

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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> 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.