pub enum IndexKeyItemsRef {
Fields(&'static [&'static str]),
Items(&'static [IndexKeyItem]),
}Expand description
IndexKeyItemsRef
Borrowed view over index key-item metadata.
Field-only indexes use Fields; mixed/explicit key metadata uses Items.
Variants§
Fields(&'static [&'static str])
Items(&'static [IndexKeyItem])
Trait Implementations§
Source§impl Clone for IndexKeyItemsRef
impl Clone for IndexKeyItemsRef
Source§fn clone(&self) -> IndexKeyItemsRef
fn clone(&self) -> IndexKeyItemsRef
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 Debug for IndexKeyItemsRef
impl Debug for IndexKeyItemsRef
Source§impl PartialEq for IndexKeyItemsRef
impl PartialEq for IndexKeyItemsRef
impl Copy for IndexKeyItemsRef
impl Eq for IndexKeyItemsRef
impl StructuralPartialEq for IndexKeyItemsRef
Auto Trait Implementations§
impl Freeze for IndexKeyItemsRef
impl RefUnwindSafe for IndexKeyItemsRef
impl Send for IndexKeyItemsRef
impl Sync for IndexKeyItemsRef
impl Unpin for IndexKeyItemsRef
impl UnsafeUnpin for IndexKeyItemsRef
impl UnwindSafe for IndexKeyItemsRef
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