Lines Matching refs:Slab
116 pub struct Slab<T> { struct
128 impl<T> Default for Slab<T> { argument
130 Slab::new() in default()
158 slab: &'a mut Slab<T>,
183 impl<T> Slab<T> { impl
195 pub fn new() -> Slab<T> { in new()
196 Slab::with_capacity(0) in new()
226 pub fn with_capacity(capacity: usize) -> Slab<T> { in with_capacity()
227 Slab { in with_capacity()
783 impl<T> ops::Index<usize> for Slab<T> { implementation
794 impl<T> ops::IndexMut<usize> for Slab<T> { implementation
803 impl<'a, T> IntoIterator for &'a Slab<T> { implementation
812 impl<'a, T> IntoIterator for &'a mut Slab<T> { implementation
821 impl<T> fmt::Debug for Slab<T> implementation