Searched defs:RecvError (Results 1 – 7 of 7) sorted by relevance
| /commonlibrary/rust/ylong_runtime/ylong_runtime/src/sync/ |
| D | error.rs | 33 pub struct RecvError; struct 35 impl Display for RecvError { implementation 41 impl Error for RecvError {} implementation
|
| D | watch.rs | 308 pub fn is_notified(&self) -> Result<bool, RecvError> { in is_notified() argument 316 pub(crate) fn try_notified(&mut self) -> Option<Result<(), RecvError>> { in try_notified() argument 360 pub fn poll_notified(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), RecvError>> { in poll_notified() argument 404 pub async fn notified(&mut self) -> Result<(), RecvError> { in notified() argument
|
| D | oneshot.rs | 430 fn take_value_sent(&self) -> Result<T, RecvError> { in take_value_sent() argument
|
| /commonlibrary/rust/ylong_runtime/ylong_runtime/src/sync/mpsc/unbounded/ |
| D | mod.rs | 293 pub fn poll_recv(&mut self, cx: &mut Context<'_>) -> Poll<Result<T, RecvError>> { in poll_recv() argument 320 pub async fn recv(&mut self) -> Result<T, RecvError> { in recv() argument
|
| D | queue.rs | 202 pub(crate) fn poll_recv(&self, cx: &mut Context<'_>) -> Poll<Result<T, RecvError>> { in poll_recv() argument
|
| /commonlibrary/rust/ylong_runtime/ylong_runtime/src/sync/mpsc/bounded/ |
| D | mod.rs | 412 pub fn poll_recv(&mut self, cx: &mut Context<'_>) -> Poll<Result<T, RecvError>> { in poll_recv() argument 440 pub async fn recv(&mut self) -> Result<T, RecvError> { in recv() argument
|
| D | array.rs | 169 pub(crate) fn poll_recv(&self, cx: &mut Context<'_>) -> Poll<Result<T, RecvError>> { in poll_recv() argument
|