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