Home
last modified time | relevance | path

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

/external/rust/crates/crossbeam-channel/tests/
Darray.rs147 fn try_send() { in try_send() function
Dzero.rs123 fn try_send() { in try_send() function
Dlist.rs134 fn try_send() { in try_send() function
Dselect_macro.rs1343 fn try_send() { in try_send() function
Dmpsc.rs63 pub fn try_send(&self, t: T) -> Result<(), TrySendError<T>> { in try_send() method
/external/rust/crates/tokio/src/net/unix/datagram/
Dsocket.rs655 pub fn try_send(&self, buf: &[u8]) -> io::Result<usize> { in try_send() method
/external/rust/crates/tokio/src/sync/mpsc/
Dbounded.rs537 pub fn try_send(&self, message: T) -> Result<(), TrySendError<T>> { in try_send() method
/external/rust/crates/crossbeam-channel/src/flavors/
Dzero.rs199 pub(crate) fn try_send(&self, msg: T) -> Result<(), TrySendError<T>> { in try_send() method
Darray.rs328 pub(crate) fn try_send(&self, msg: T) -> Result<(), TrySendError<T>> { in try_send() method
Dlist.rs408 pub(crate) fn try_send(&self, msg: T) -> Result<(), TrySendError<T>> { in try_send() method
/external/rust/crates/tokio/src/net/
Dudp.rs600 pub fn try_send(&self, buf: &[u8]) -> io::Result<usize> { in try_send() method
/external/rust/crates/futures-channel/src/mpsc/
Dmod.rs501 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/
Dchannel.rs388 pub fn try_send(&self, msg: T) -> Result<(), TrySendError<T>> { in try_send() method