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 | 134 fn try_send() { in try_send() function
|
D | array.rs | 145 fn try_send() { in try_send() function
|
D | select_macro.rs | 1309 fn try_send() { in try_send() function
|
D | mpsc.rs | 57 pub fn try_send(&self, t: T) -> Result<(), TrySendError<T>> { in try_send() method
|
/external/rust/crates/tokio/src/sync/mpsc/ |
D | bounded.rs | 450 pub fn try_send(&self, message: T) -> Result<(), TrySendError<T>> { in try_send() method
|
/external/rust/crates/tokio/src/net/unix/datagram/ |
D | socket.rs | 562 pub fn try_send(&self, buf: &[u8]) -> io::Result<usize> { in try_send() method
|
/external/rust/crates/tokio/src/net/ |
D | udp.rs | 547 pub fn try_send(&self, buf: &[u8]) -> io::Result<usize> { in try_send() method
|
/external/rust/crates/crossbeam-channel/src/flavors/ |
D | zero.rs | 186 pub fn try_send(&self, msg: T) -> Result<(), TrySendError<T>> { in try_send() method
|
D | array.rs | 335 pub fn try_send(&self, msg: T) -> Result<(), TrySendError<T>> { in try_send() method
|
D | list.rs | 408 pub fn try_send(&self, msg: T) -> Result<(), TrySendError<T>> { in try_send() method
|
/external/rust/crates/futures-channel/src/mpsc/ |
D | mod.rs | 516 fn try_send(&mut self, msg: T) -> Result<(), TrySendError<T>> { in try_send() method 723 pub fn try_send(&mut self, msg: T) -> Result<(), TrySendError<T>> { in try_send() method
|
/external/rust/crates/crossbeam-channel/src/ |
D | channel.rs | 390 pub fn try_send(&self, msg: T) -> Result<(), TrySendError<T>> { in try_send() method
|