[][src]Struct rs_es::operations::search::SearchResultInterim

pub struct SearchResultInterim<T> {
    pub took: u64,
    pub timed_out: bool,
    pub shards: ShardCountResult,
    pub hits: SearchHitsResult<T>,
    pub aggs: Option<Value>,
    pub scroll_id: Option<String>,
}

Fields

took: u64timed_out: boolshards: ShardCountResulthits: SearchHitsResult<T>aggs: Option<Value>

Optional field populated if aggregations are specified

scroll_id: Option<String>

Optional field populated during scanning and scrolling

Trait Implementations

impl<T: Debug> Debug for SearchResultInterim<T>[src]

impl<'de, T> Deserialize<'de> for SearchResultInterim<T> where
    T: Deserialize<'de>, 
[src]

impl<T> Serialize for SearchResultInterim<T> where
    T: Serialize
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for SearchResultInterim<T> where
    T: RefUnwindSafe

impl<T> Send for SearchResultInterim<T> where
    T: Send

impl<T> Sync for SearchResultInterim<T> where
    T: Sync

impl<T> Unpin for SearchResultInterim<T>

impl<T> UnwindSafe for SearchResultInterim<T> where
    T: UnwindSafe

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: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

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

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<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err