Home
last modified time | relevance | path

Searched refs:CachedIterMut (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/thread_local/src/
Dcached.rs65 pub fn iter_mut(&mut self) -> CachedIterMut<T> { in iter_mut()
66 CachedIterMut { in iter_mut()
96 type IntoIter = CachedIterMut<'a, T>;
98 fn into_iter(self) -> CachedIterMut<'a, T> { in into_iter()
121 pub struct CachedIterMut<'a, T: Send + 'a> { struct
125 impl<'a, T: Send + 'a> Iterator for CachedIterMut<'a, T> { implementation
139 impl<'a, T: Send + 'a> ExactSizeIterator for CachedIterMut<'a, T> {} implementation
Dlib.rs74 pub use cached::{CachedIntoIter, CachedIterMut, CachedThreadLocal};