[][src]Struct rusoto_kendra::ListFaqsResponse

pub struct ListFaqsResponse {
    pub faq_summary_items: Option<Vec<FaqSummary>>,
    pub next_token: Option<String>,
}

Fields

faq_summary_items: Option<Vec<FaqSummary>>

information about the FAQs associated with the specified index.

next_token: Option<String>

The ListFaqs operation returns a page of FAQs at a time. The maximum size of the page is set by the MaxResults parameter. If there are more jobs in the list than the page size, Amazon Kendra returns the NextPage token. Include the token in the next request to the ListFaqs operation to return the next page of FAQs.

Trait Implementations

impl Clone for ListFaqsResponse[src]

impl Debug for ListFaqsResponse[src]

impl Default for ListFaqsResponse[src]

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

impl PartialEq<ListFaqsResponse> for ListFaqsResponse[src]

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