pub enum IterKey<'a> {
Index(u64),
ZStr(&'a ZStr),
}
Expand description
Iterator key for ZArr::iter
and ZArr::iter_mut
.
Variants§
Trait Implementations§
impl<'a> StructuralPartialEq for IterKey<'a>
Auto Trait Implementations§
impl<'a> Freeze for IterKey<'a>
impl<'a> RefUnwindSafe for IterKey<'a>
impl<'a> !Send for IterKey<'a>
impl<'a> !Sync for IterKey<'a>
impl<'a> Unpin for IterKey<'a>
impl<'a> UnwindSafe for IterKey<'a>
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