Searched defs:try_send (Results 1 – 13 of 13) sorted by relevance
/external/rust/crates/crossbeam-channel/tests/ |
D | array.rs | 147 fn try_send() { in try_send() function
|
D | zero.rs | 123 fn try_send() { in try_send() function
|
D | list.rs | 134 fn try_send() { in try_send() function
|
D | select_macro.rs | 1343 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 | 655 pub fn try_send(&self, buf: &[u8]) -> io::Result<usize> { in try_send() method
|
/external/rust/crates/tokio/src/sync/mpsc/ |
D | bounded.rs | 537 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 | 328 pub(crate) fn try_send(&self, msg: T) -> Result<(), TrySendError<T>> { in try_send() method
|
D | list.rs | 408 pub(crate) fn try_send(&self, msg: T) -> Result<(), TrySendError<T>> { in try_send() method
|
/external/rust/crates/tokio/src/net/ |
D | udp.rs | 600 pub fn try_send(&self, buf: &[u8]) -> io::Result<usize> { in try_send() method
|
/external/rust/crates/futures-channel/src/mpsc/ |
D | mod.rs | 501 fn try_send(&mut self, msg: T) -> Result<(), TrySendError<T>> { in try_send() method 696 pub fn try_send(&mut self, msg: T) -> Result<(), TrySendError<T>> { in try_send() method
|
/external/rust/crates/crossbeam-channel/src/ |
D | channel.rs | 388 pub fn try_send(&self, msg: T) -> Result<(), TrySendError<T>> { in try_send() method
|