[][src]Struct rusoto_kendra::QueryResult

pub struct QueryResult {
    pub facet_results: Option<Vec<FacetResult>>,
    pub query_id: Option<String>,
    pub result_items: Option<Vec<QueryResultItem>>,
    pub total_number_of_results: Option<i64>,
}

Fields

facet_results: Option<Vec<FacetResult>>

Contains the facet results. A FacetResult contains the counts for each attribute key that was specified in the Facets input parameter.

query_id: Option<String>

The unique identifier for the search. You use QueryId to identify the search when using the feedback API.

result_items: Option<Vec<QueryResultItem>>

The results of the search.

total_number_of_results: Option<i64>

The number of items returned by the search. Use this to determine when you have requested the last set of results.

Trait Implementations

impl Clone for QueryResult[src]

impl Debug for QueryResult[src]

impl Default for QueryResult[src]

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

impl PartialEq<QueryResult> for QueryResult[src]

impl StructuralPartialEq for QueryResult[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> 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> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.