Searched refs:call_mut (Results 1 – 5 of 5) sorted by relevance
/external/rust/crates/futures-util/src/ |
D | fns.rs | 20 fn call_mut(&mut self, arg: A) -> Self::Output; in call_mut() method 27 fn call_mut(&mut self, arg: A) -> R { in call_mut() function 59 fn call_mut(&mut self, arg: A) -> Self::Output { 109 fn call_mut(&mut self, arg: A) -> Self::Output { in call_mut() function 110 self.1.call_mut(self.0.call_mut(arg)) in call_mut() 159 fn call_mut(&mut self, arg: A) -> Self::Output { in call_mut() function 160 self.0.call_mut(&arg); in call_mut() 194 fn call_mut(&mut self, arg: Result<T, E>) -> Self::Output { in call_mut() function 195 arg.map(|x| self.0.call_mut(x)) in call_mut() 226 fn call_mut(&mut self, arg: Result<T, E>) -> Self::Output { in call_mut() function [all …]
|
/external/rust/crates/itertools/src/ |
D | groupbylazy.rs | 7 fn call_mut(&mut self, arg: A) -> Self::Key; in call_mut() method 15 fn call_mut(&mut self, arg: A) -> Self::Key { in call_mut() function 43 fn call_mut(&mut self, _arg: A) -> Self::Key { in call_mut() method 171 let key = self.key.call_mut(&elt); in step_buffering() 220 let key = self.key.call_mut(&elt); in step_current() 252 let key = self.key.call_mut(&elt); in group_key()
|
/external/rust/crates/futures-util/src/stream/stream/ |
D | map.rs | 62 Poll::Ready(res.map(|x| this.f.call_mut(x))) in poll_next()
|
D | filter_map.rs | 81 this.pending.set(Some(this.f.call_mut(item))); in poll_next()
|
D | filter.rs | 92 this.pending_fut.set(Some(this.f.call_mut(&item))); in poll_next()
|