Home
last modified time | relevance | path

Searched defs:try_send (Results 1 – 13 of 13) sorted by relevance

/external/rust/crates/crossbeam-channel/tests/
Dzero.rs123 fn try_send() { in try_send() function
Dlist.rs134 fn try_send() { in try_send() function
Darray.rs145 fn try_send() { in try_send() function
Dselect_macro.rs1309 fn try_send() { in try_send() function
Dmpsc.rs57 pub fn try_send(&self, t: T) -> Result<(), TrySendError<T>> { in try_send() method
/external/rust/crates/tokio/src/sync/mpsc/
Dbounded.rs450 pub fn try_send(&self, message: T) -> Result<(), TrySendError<T>> { in try_send() method
/external/rust/crates/tokio/src/net/unix/datagram/
Dsocket.rs562 pub fn try_send(&self, buf: &[u8]) -> io::Result<usize> { in try_send() method
/external/rust/crates/tokio/src/net/
Dudp.rs547 pub fn try_send(&self, buf: &[u8]) -> io::Result<usize> { in try_send() method
/external/rust/crates/crossbeam-channel/src/flavors/
Dzero.rs186 pub fn try_send(&self, msg: T) -> Result<(), TrySendError<T>> { in try_send() method
Darray.rs335 pub fn try_send(&self, msg: T) -> Result<(), TrySendError<T>> { in try_send() method
Dlist.rs408 pub fn try_send(&self, msg: T) -> Result<(), TrySendError<T>> { in try_send() method
/external/rust/crates/futures-channel/src/mpsc/
Dmod.rs516 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/
Dchannel.rs390 pub fn try_send(&self, msg: T) -> Result<(), TrySendError<T>> { in try_send() method