[][src]Struct rusoto_cloudsearchdomain::SearchResponse

pub struct SearchResponse {
    pub facets: Option<HashMap<String, BucketInfo>>,
    pub hits: Option<Hits>,
    pub stats: Option<HashMap<String, FieldStats>>,
    pub status: Option<SearchStatus>,
}

The result of a Search request. Contains the documents that match the specified search criteria and any requested fields, highlights, and facet information.

Fields

facets: Option<HashMap<String, BucketInfo>>

The requested facet information.

hits: Option<Hits>

The documents that match the search criteria.

stats: Option<HashMap<String, FieldStats>>

The requested field statistics information.

status: Option<SearchStatus>

The status information returned for the search request.

Trait Implementations

impl Clone for SearchResponse[src]

impl Debug for SearchResponse[src]

impl Default for SearchResponse[src]

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

impl PartialEq<SearchResponse> for SearchResponse[src]

impl StructuralPartialEq for SearchResponse[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, 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> Sealed<T> for T where
    T: ?Sized

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.