| /external/rust/crates/tokio/src/sync/mpsc/ |
| D | error.rs | 99 pub struct RecvError(()); struct 102 impl fmt::Display for RecvError { implementation 109 impl Error for RecvError {} implementation
|
| /external/rust/crates/tokio/src/sync/ |
| D | watch.rs | 233 pub struct RecvError(pub(super) ()); struct 237 impl fmt::Display for RecvError { implementation 243 impl Error for RecvError {} implementation 553 pub fn has_changed(&self) -> Result<bool, error::RecvError> { in has_changed() 604 pub async fn changed(&mut self) -> Result<(), error::RecvError> { in changed() 671 ) -> Result<Ref<'_, T>, error::RecvError> { in wait_for() 721 ) -> Option<Result<(), error::RecvError>> { in maybe_changed() 743 ) -> Result<(), error::RecvError> { in changed_impl()
|
| D | oneshot.rs | 341 pub struct RecvError(pub(super) ()); struct 355 impl fmt::Display for RecvError { implementation 361 impl std::error::Error for RecvError {} implementation 1066 pub fn blocking_recv(self) -> Result<T, RecvError> { in blocking_recv() argument 1134 fn poll_recv(&self, cx: &mut Context<'_>) -> Poll<Result<T, RecvError>> { in poll_recv() argument
|
| D | broadcast.rs | 242 pub enum RecvError { enum 254 impl fmt::Display for RecvError { implementation 263 impl std::error::Error for RecvError {} implementation 1253 pub async fn recv(&mut self) -> Result<T, RecvError> { in recv() argument 1326 pub fn blocking_recv(&mut self) -> Result<T, RecvError> { in blocking_recv() argument 1386 fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<T, RecvError>> { in poll() argument
|
| /external/rust/crates/oneshot-uniffi/src/ |
| D | errors.rs | 88 pub struct RecvError; struct 90 impl fmt::Display for RecvError { implementation 97 impl std::error::Error for RecvError {} implementation
|
| D | lib.rs | 451 pub fn recv(self) -> Result<T, RecvError> { in recv() argument 597 pub fn recv_ref(&self) -> Result<T, RecvError> { in recv_ref() argument 1140 unsafe fn write_async_waker(&self, cx: &mut task::Context<'_>) -> Poll<Result<T, RecvError>> { in write_async_waker() argument
|
| /external/rust/crates/crossbeam-channel/src/ |
| D | err.rs | 54 pub struct RecvError; struct 282 impl fmt::Display for RecvError { implementation 288 impl error::Error for RecvError {} implementation
|
| D | select.rs | 1241 pub fn recv<T>(mut self, r: &Receiver<T>) -> Result<T, RecvError> { in recv() argument
|
| D | channel.rs | 812 pub fn recv(&self) -> Result<T, RecvError> { in recv() argument
|
| /external/rust/crates/tokio-stream/src/wrappers/ |
| D | watch.rs | 80 ) -> (Result<(), RecvError>, Receiver<T>) { in make_future() argument
|
| D | broadcast.rs | 40 async fn make_future<T: Clone>(mut rx: Receiver<T>) -> (Result<T, RecvError>, Receiver<T>) { in make_future() argument
|
| /external/rust/crates/crossbeam-channel/tests/ |
| D | mpsc.rs | 87 pub fn recv(&self) -> Result<T, RecvError> { in recv() argument
|