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