pub enum IndexVec {
// some variants omitted
}
Available on crate feature
alloc
only.Expand description
A vector of indices.
Multiple internal representations are possible.
Implementations§
source§impl IndexVec
impl IndexVec
sourcepub fn index(&self, index: usize) -> usize
pub fn index(&self, index: usize) -> usize
Return the value at the given index
.
(Note: we cannot implement std::ops::Index
because of lifetime
restrictions.)
sourcepub fn into_vec(self) -> Vec<usize>
pub fn into_vec(self) -> Vec<usize>
Return result as a Vec<usize>
. Conversion may or may not be trivial.
sourcepub fn iter(&self) -> IndexVecIter<'_> ⓘ
pub fn iter(&self) -> IndexVecIter<'_> ⓘ
Iterate over the indices as a sequence of usize
values
Trait Implementations§
source§impl<'de> Deserialize<'de> for IndexVec
impl<'de> Deserialize<'de> for IndexVec
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more