Searched defs:try_send (Results 1 – 13 of 13) sorted by relevance
| /external/rust/crates/crossbeam-channel/tests/ |
| D | zero.rs | 123 fn try_send() { in try_send() function
|
| D | list.rs | 135 fn try_send() { in try_send() function
|
| D | array.rs | 145 fn try_send() { in try_send() function
|
| D | select_macro.rs | 1342 fn try_send() { in try_send() function
|
| D | mpsc.rs | 63 pub fn try_send(&self, t: T) -> Result<(), TrySendError<T>> { in try_send() method
|
| /external/rust/crates/tokio/src/net/unix/datagram/ |
| D | socket.rs | 664 pub fn try_send(&self, buf: &[u8]) -> io::Result<usize> { in try_send() method
|
| /external/rust/crates/tokio/src/sync/mpsc/ |
| D | bounded.rs | 581 pub fn try_send(&self, message: T) -> Result<(), TrySendError<T>> { in try_send() method
|
| /external/rust/crates/crossbeam-channel/src/flavors/ |
| D | zero.rs | 199 pub(crate) fn try_send(&self, msg: T) -> Result<(), TrySendError<T>> { in try_send() method
|
| D | array.rs | 322 pub(crate) fn try_send(&self, msg: T) -> Result<(), TrySendError<T>> { in try_send() method
|
| D | list.rs | 410 pub(crate) fn try_send(&self, msg: T) -> Result<(), TrySendError<T>> { in try_send() method
|
| /external/rust/crates/tokio/src/net/ |
| D | udp.rs | 641 pub fn try_send(&self, buf: &[u8]) -> io::Result<usize> { in try_send() method
|
| /external/rust/crates/futures-channel/src/mpsc/ |
| D | mod.rs | 492 fn try_send(&mut self, msg: T) -> Result<(), TrySendError<T>> { in try_send() method 687 pub fn try_send(&mut self, msg: T) -> Result<(), TrySendError<T>> { in try_send() method
|
| /external/rust/crates/crossbeam-channel/src/ |
| D | channel.rs | 399 pub fn try_send(&self, msg: T) -> Result<(), TrySendError<T>> { in try_send() method
|