Struct elasticsearch_dsl::search::NestedIdentity
source · [−]pub struct NestedIdentity {
pub field: String,
pub offset: u64,
pub nested: Option<Box<NestedIdentity>>,
}
Expand description
Nested document metadata
Fields
field: String
Field
offset: u64
Offset
nested: Option<Box<NestedIdentity>>
Nested document metadata
Trait Implementations
sourceimpl Clone for NestedIdentity
impl Clone for NestedIdentity
sourcefn clone(&self) -> NestedIdentity
fn clone(&self) -> NestedIdentity
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 Debug for NestedIdentity
impl Debug for NestedIdentity
sourceimpl<'de> Deserialize<'de> for NestedIdentity
impl<'de> Deserialize<'de> for NestedIdentity
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 PartialEq<NestedIdentity> for NestedIdentity
impl PartialEq<NestedIdentity> for NestedIdentity
sourcefn eq(&self, other: &NestedIdentity) -> bool
fn eq(&self, other: &NestedIdentity) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &NestedIdentity) -> bool
fn ne(&self, other: &NestedIdentity) -> bool
This method tests for !=
.
sourceimpl Serialize for NestedIdentity
impl Serialize for NestedIdentity
impl StructuralPartialEq for NestedIdentity
Auto Trait Implementations
impl RefUnwindSafe for NestedIdentity
impl Send for NestedIdentity
impl Sync for NestedIdentity
impl Unpin for NestedIdentity
impl UnwindSafe for NestedIdentity
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