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

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

Fields

scroll_id: Stringtook: u64timed_out: boolshards: ShardCountResulthits: SearchHitsResult<T>aggs: Option<AggregationsResult>

Methods

impl<T> ScanResult<T> where
    T: DeserializeOwned + Debug
[src]

Important traits for ScanIterator<'a, T>
pub fn iter(self, client: &mut Client, scroll: Duration) -> ScanIterator<T>[src]

Returns an iterator from which hits can be read

pub fn scroll(
    &mut self,
    client: &mut Client,
    scroll: &Duration
) -> Result<SearchResult<T>, EsError>
[src]

Calls the /_search/scroll ES end-point for the next page

pub fn close(&self, client: &mut Client) -> Result<(), EsError>[src]

Calls ES to close the server-side part of the scan/scroll operation

Trait Implementations

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

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

Auto Trait Implementations

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

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

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

impl<T> Unpin for ScanResult<T>

impl<T> UnwindSafe for ScanResult<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