pub enum CompactIndex {
Null,
Value(u32),
}Expand description
One value in an NX OM compact-index lane.
Variants§
Trait Implementations§
Source§impl Clone for CompactIndex
impl Clone for CompactIndex
Source§fn clone(&self) -> CompactIndex
fn clone(&self) -> CompactIndex
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CompactIndex
Source§impl Debug for CompactIndex
impl Debug for CompactIndex
impl Eq for CompactIndex
Source§impl PartialEq for CompactIndex
impl PartialEq for CompactIndex
impl StructuralPartialEq for CompactIndex
Auto Trait Implementations§
impl Freeze for CompactIndex
impl RefUnwindSafe for CompactIndex
impl Send for CompactIndex
impl Sync for CompactIndex
impl Unpin for CompactIndex
impl UnsafeUnpin for CompactIndex
impl UnwindSafe for CompactIndex
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