Struct rustc_data_structures::indexed_set::SparseIdxSet[][src]

pub struct SparseIdxSet<T: Idx>(_);

A sparse index set with a maximum of SPARSE_MAX elements. Used by HybridIdxSet; do not use directly.

The elements are stored as an unsorted vector with no duplicates.

Trait Implementations

impl<T: Clone + Idx> Clone for SparseIdxSet<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: Debug + Idx> Debug for SparseIdxSet<T>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<T> Send for SparseIdxSet<T> where
    T: Send

impl<T> Sync for SparseIdxSet<T> where
    T: Sync