Home
last modified time | relevance | path

Searched refs:IterMut (Results 1 – 10 of 10) sorted by relevance

/third_party/rust/crates/rust-openssl/openssl/src/
Dstack.rs211 pub fn iter_mut(&mut self) -> IterMut<'_, T> { in iter_mut()
212 IterMut { in iter_mut()
289 type IntoIter = IterMut<'a, T>;
291 fn into_iter(self) -> IterMut<'a, T> { in into_iter()
307 type IntoIter = IterMut<'a, T>;
309 fn into_iter(self) -> IterMut<'a, T> { in into_iter()
349 pub struct IterMut<'a, T: Stackable> { struct
354 impl<'a, T: Stackable> Iterator for IterMut<'a, T> { implementation
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/clap/src/util/
Dflat_map.rs128 pub fn iter_mut(&mut self) -> IterMut<K, V> { in iter_mut()
129 IterMut { in iter_mut()
220 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.rs155 pub fn iter_mut(self: Pin<&mut Self>) -> IterMut<T> { in iter_mut()
156 IterMut { v: self, index: 0 } in iter_mut()
245 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
Dvector.rs5 pub use crate::cxx_vector::{Iter, IterMut, VectorElement};
/third_party/rust/crates/syn/src/
Dpunctuated.rs117 pub fn iter_mut(&mut self) -> IterMut<T> { in iter_mut()
118 IterMut { in iter_mut()
516 type IntoIter = IterMut<'a, T>;
585 inner: slice::IterMut<'a, (T, P)>,
840 pub struct IterMut<'a, T: 'a> { struct
850 inner: slice::IterMut<'a, (T, P)>,
856 slice::IterMut<'a, (T, P)>: TrivialDrop,
862 pub(crate) fn empty_punctuated_iter_mut<'a, T>() -> IterMut<'a, T> { in empty_punctuated_iter_mut()
863 IterMut { in empty_punctuated_iter_mut()
868 impl<'a, T> Iterator for IterMut<'a, T> { implementation
[all …]
Ddrops.rs36 impl<'a, T> TrivialDrop for slice::IterMut<'a, T> {} implementation
55 assert!(!needs_drop::<slice::IterMut<NeedsDrop>>()); in test_needs_drop()
Ddata.rs90 pub fn iter_mut(&mut self) -> punctuated::IterMut<Field> { in iter_mut()
141 type IntoIter = punctuated::IterMut<'a, Field>;
Dgenerics.rs2 use crate::punctuated::{Iter, IterMut, Punctuated};
200 pub struct TypeParamsMut<'a>(IterMut<'a, GenericParam>);
236 pub struct LifetimesMut<'a>(IterMut<'a, GenericParam>);
272 pub struct ConstParamsMut<'a>(IterMut<'a, GenericParam>);
/third_party/rust/crates/memchr/bench/data/code/
Drust-library.rs22089 pub use core::slice::{Iter, IterMut};
27028 pub struct IterMut<'a, T: 'a> {
27039 impl<T: fmt::Debug> fmt::Debug for IterMut<'_, T> {
27460 pub fn iter_mut(&mut self) -> IterMut<'_, T> {
27461 IterMut { head: self.head, tail: self.tail, len: self.len, list: self }
27995 impl<'a, T> Iterator for IterMut<'a, T> {
28025 impl<'a, T> DoubleEndedIterator for IterMut<'a, T> {
28043 impl<T> ExactSizeIterator for IterMut<'_, T> {}
28046 impl<T> FusedIterator for IterMut<'_, T> {}
28605 type IntoIter = IterMut<'a, T>;
[all …]
/third_party/rust/crates/serde/serde/src/private/
Dde.rs2883 iter: slice::IterMut<'a, Option<(Content<'de>, Content<'de>)>>,
2892 iter: slice::IterMut<'a, Option<(Content<'de>, Content<'de>)>>, in new()
2946 iter: slice::IterMut<'a, Option<(Content<'de>, Content<'de>)>>,