Home
last modified time | relevance | path

Searched defs:IterMut (Results 1 – 6 of 6) sorted by relevance

/third_party/rust/crates/clap/src/util/
Dflat_map.rs220 pub struct IterMut<'a, K: 'a, V: 'a> { struct
221 keys: std::slice::IterMut<'a, K>, argument
222 values: std::slice::IterMut<'a, V>, argument
225 impl<'a, K, V> Iterator for IterMut<'a, K, V> { implementation
242 impl<'a, K, V> DoubleEndedIterator for IterMut<'a, K, V> { implementation
254 impl<'a, K, V> ExactSizeIterator for IterMut<'a, K, V> {} implementation
/third_party/rust/crates/cxx/src/
Dcxx_vector.rs245 pub struct IterMut<'a, T> { struct
255 type IntoIter = IterMut<'a, T>; argument
262 impl<'a, T> Iterator for IterMut<'a, T> implementation
285 impl<'a, T> ExactSizeIterator for IterMut<'a, T> implementation
294 impl<'a, T> FusedIterator for IterMut<'a, T> where T: VectorElement {} implementation
/third_party/rust/crates/rust-openssl/openssl/src/
Dstack.rs349 pub struct IterMut<'a, T: Stackable> { struct
354 impl<'a, T: Stackable> Iterator for IterMut<'a, T> { argument
370 impl<'a, T: Stackable> DoubleEndedIterator for IterMut<'a, T> { implementation
380 impl<'a, T: Stackable> ExactSizeIterator for IterMut<'a, T> {} implementation
/third_party/rust/crates/syn/src/
Ddrops.rs36 impl<'a, T> TrivialDrop for slice::IterMut<'a, T> {} implementation
Dpunctuated.rs840 pub struct IterMut<'a, T: 'a> { struct
841 inner: Box<NoDrop<dyn IterMutTrait<'a, T, Item = &'a mut T> + 'a>>, argument
868 impl<'a, T> Iterator for IterMut<'a, T> { implementation
880 impl<'a, T> DoubleEndedIterator for IterMut<'a, T> { implementation
886 impl<'a, T> ExactSizeIterator for IterMut<'a, T> { implementation
/third_party/rust/crates/memchr/bench/data/code/
Drust-library.rs31208 impl<'a, K, V> IterMut<'a, K, V> { impl