pub enum IndicesGetMappingParts<'b> {
None,
Index(&'b [&'b str]),
Type(&'b [&'b str]),
IndexType(&'b [&'b str], &'b [&'b str]),
}
Expand description
API parts for the Indices Get Mapping API
Variants§
None
No parts
Index(&'b [&'b str])
Index
Type(&'b [&'b str])
Type
IndexType(&'b [&'b str], &'b [&'b str])
Index and Type
Implementations§
Trait Implementations§
Source§impl<'b> Clone for IndicesGetMappingParts<'b>
impl<'b> Clone for IndicesGetMappingParts<'b>
Source§fn clone(&self) -> IndicesGetMappingParts<'b>
fn clone(&self) -> IndicesGetMappingParts<'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 IndicesGetMappingParts<'b>
impl<'b> Debug for IndicesGetMappingParts<'b>
Source§impl<'b> PartialEq for IndicesGetMappingParts<'b>
impl<'b> PartialEq for IndicesGetMappingParts<'b>
impl<'b> StructuralPartialEq for IndicesGetMappingParts<'b>
Auto Trait Implementations§
impl<'b> Freeze for IndicesGetMappingParts<'b>
impl<'b> RefUnwindSafe for IndicesGetMappingParts<'b>
impl<'b> Send for IndicesGetMappingParts<'b>
impl<'b> Sync for IndicesGetMappingParts<'b>
impl<'b> Unpin for IndicesGetMappingParts<'b>
impl<'b> UnwindSafe for IndicesGetMappingParts<'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