KeyIter

Trait KeyIter 

Source
pub trait KeyIter {
    type Key;

    // Required method
    fn key_vec(&self) -> Vec<Self::Key>;
}

Required Associated Types§

Required Methods§

Source

fn key_vec(&self) -> Vec<Self::Key>

Implementors§

Source§

impl<T, Key: Key + IdFor<T>> KeyIter for SlotMap<Key, T>

Source§

type Key = Key