Struct elasticsearch_dsl::search::InnerHitsItemsHits [−][src]
pub struct InnerHitsItemsHits<IH> {
pub total: Option<Total>,
pub max_score: Option<f32>,
pub hits: Vec<InnerHit<IH>>,
}Expand description
Matched inner hits
Fields
total: Option<Total>Total number of matched documents
max_score: Option<f32>Maximum document score. None when documents are implicitly sorted
by a field other than _score
hits: Vec<InnerHit<IH>>Matched hits
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl<IH> RefUnwindSafe for InnerHitsItemsHits<IH> where
IH: RefUnwindSafe,
impl<IH> Send for InnerHitsItemsHits<IH> where
IH: Send,
impl<IH> Sync for InnerHitsItemsHits<IH> where
IH: Sync,
impl<IH> Unpin for InnerHitsItemsHits<IH> where
IH: Unpin,
impl<IH> UnwindSafe for InnerHitsItemsHits<IH> where
IH: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more