[][src]Struct gcp_client::google::cloud::talent::v4beta1::SearchProfilesResponse

pub struct SearchProfilesResponse {
    pub estimated_total_size: i64,
    pub spell_correction: Option<SpellingCorrection>,
    pub metadata: Option<ResponseMetadata>,
    pub next_page_token: String,
    pub histogram_query_results: Vec<HistogramQueryResult>,
    pub summarized_profiles: Vec<SummarizedProfile>,
    pub result_set_id: String,
}

Response of SearchProfiles method.

Fields

estimated_total_size: i64

An estimation of the number of profiles that match the specified query.

This number isn't guaranteed to be accurate.

spell_correction: Option<SpellingCorrection>

The spell checking result, and correction.

metadata: Option<ResponseMetadata>

Additional information for the API invocation, such as the request tracking id.

next_page_token: String

A token to retrieve the next page of results. This is empty if there are no more results.

histogram_query_results: Vec<HistogramQueryResult>

The histogram results that match with specified [SearchProfilesRequest.histogram_queries][google.cloud.talent.v4beta1.SearchProfilesRequest.histogram_queries].

summarized_profiles: Vec<SummarizedProfile>

The profile entities that match the specified [SearchProfilesRequest][google.cloud.talent.v4beta1.SearchProfilesRequest].

result_set_id: String

An id that uniquely identifies the result set of a [SearchProfiles][google.cloud.talent.v4beta1.ProfileService.SearchProfiles] call for consistent results.

Trait Implementations

impl Clone for SearchProfilesResponse[src]

impl Debug for SearchProfilesResponse[src]

impl Default for SearchProfilesResponse[src]

impl Message for SearchProfilesResponse[src]

impl PartialEq<SearchProfilesResponse> for SearchProfilesResponse[src]

impl StructuralPartialEq for SearchProfilesResponse[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]