pub enum ArrayKey<S> {
Int(i64),
String(S),
}
Expand description
The generic array key type
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<S> Freeze for ArrayKey<S>where
S: Freeze,
impl<S> RefUnwindSafe for ArrayKey<S>where
S: RefUnwindSafe,
impl<S> Send for ArrayKey<S>where
S: Send,
impl<S> Sync for ArrayKey<S>where
S: Sync,
impl<S> Unpin for ArrayKey<S>where
S: Unpin,
impl<S> UnwindSafe for ArrayKey<S>where
S: UnwindSafe,
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