pub enum IndicesGetFieldMappingParts<'b> {
Fields(&'b [&'b str]),
IndexFields(&'b [&'b str], &'b [&'b str]),
TypeFields(&'b [&'b str], &'b [&'b str]),
IndexTypeFields(&'b [&'b str], &'b [&'b str], &'b [&'b str]),
}
Expand description
API parts for the Indices Get Field Mapping API
Variants§
Fields(&'b [&'b str])
Fields
IndexFields(&'b [&'b str], &'b [&'b str])
Index and Fields
TypeFields(&'b [&'b str], &'b [&'b str])
Type and Fields
IndexTypeFields(&'b [&'b str], &'b [&'b str], &'b [&'b str])
Index, Type and Fields
Implementations§
Trait Implementations§
Source§impl<'b> Clone for IndicesGetFieldMappingParts<'b>
impl<'b> Clone for IndicesGetFieldMappingParts<'b>
Source§fn clone(&self) -> IndicesGetFieldMappingParts<'b>
fn clone(&self) -> IndicesGetFieldMappingParts<'b>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'b> Debug for IndicesGetFieldMappingParts<'b>
impl<'b> Debug for IndicesGetFieldMappingParts<'b>
Source§impl<'b> PartialEq for IndicesGetFieldMappingParts<'b>
impl<'b> PartialEq for IndicesGetFieldMappingParts<'b>
Source§fn eq(&self, other: &IndicesGetFieldMappingParts<'b>) -> bool
fn eq(&self, other: &IndicesGetFieldMappingParts<'b>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl<'b> StructuralPartialEq for IndicesGetFieldMappingParts<'b>
Auto Trait Implementations§
impl<'b> Freeze for IndicesGetFieldMappingParts<'b>
impl<'b> RefUnwindSafe for IndicesGetFieldMappingParts<'b>
impl<'b> Send for IndicesGetFieldMappingParts<'b>
impl<'b> Sync for IndicesGetFieldMappingParts<'b>
impl<'b> Unpin for IndicesGetFieldMappingParts<'b>
impl<'b> UnwindSafe for IndicesGetFieldMappingParts<'b>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more