[][src]Struct rusoto_kendra::Search

pub struct Search {
    pub displayable: Option<bool>,
    pub facetable: Option<bool>,
    pub searchable: Option<bool>,
}

Provides information about how a custom index field is used during a search.

Fields

displayable: Option<bool>

Determines whether the field is returned in the query response. The default is true.

facetable: Option<bool>

Indicates that the field can be used to create search facets, a count of results for each value in the field. The default is false .

searchable: Option<bool>

Determines whether the field is used in the search. If the Searchable field is true, you can use relevance tuning to manually tune how Amazon Kendra weights the field in the search. The default is true for string fields and false for number and date fields.

Trait Implementations

impl Clone for Search[src]

impl Debug for Search[src]

impl Default for Search[src]

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

impl PartialEq<Search> for Search[src]

impl Serialize for Search[src]

impl StructuralPartialEq for Search[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.