Struct elasticsearch_dsl::search::InnerHitsResponse
source · [−]pub struct InnerHitsResponse<IH> {
pub items: InnerHitsItems<IH>,
}
Expand description
Represents inner hits
Fields
items: InnerHitsItems<IH>
Inner hits items
Trait Implementations
sourceimpl<IH: Clone> Clone for InnerHitsResponse<IH>
impl<IH: Clone> Clone for InnerHitsResponse<IH>
sourcefn clone(&self) -> InnerHitsResponse<IH>
fn clone(&self) -> InnerHitsResponse<IH>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<IH: Debug> Debug for InnerHitsResponse<IH>
impl<IH: Debug> Debug for InnerHitsResponse<IH>
sourceimpl<'de, IH> Deserialize<'de> for InnerHitsResponse<IH> where
IH: Deserialize<'de>,
impl<'de, IH> Deserialize<'de> for InnerHitsResponse<IH> where
IH: Deserialize<'de>,
sourcefn 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
sourceimpl<IH: PartialEq> PartialEq<InnerHitsResponse<IH>> for InnerHitsResponse<IH>
impl<IH: PartialEq> PartialEq<InnerHitsResponse<IH>> for InnerHitsResponse<IH>
sourcefn eq(&self, other: &InnerHitsResponse<IH>) -> bool
fn eq(&self, other: &InnerHitsResponse<IH>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &InnerHitsResponse<IH>) -> bool
fn ne(&self, other: &InnerHitsResponse<IH>) -> bool
This method tests for !=
.
sourceimpl<IH> Serialize for InnerHitsResponse<IH> where
IH: Serialize,
impl<IH> Serialize for InnerHitsResponse<IH> where
IH: Serialize,
impl<IH> StructuralPartialEq for InnerHitsResponse<IH>
Auto Trait Implementations
impl<IH> RefUnwindSafe for InnerHitsResponse<IH> where
IH: RefUnwindSafe,
impl<IH> Send for InnerHitsResponse<IH> where
IH: Send,
impl<IH> Sync for InnerHitsResponse<IH> where
IH: Sync,
impl<IH> Unpin for InnerHitsResponse<IH> where
IH: Unpin,
impl<IH> UnwindSafe for InnerHitsResponse<IH> where
IH: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more