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