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.rs135 fn try_send() { in try_send() function
Darray.rs145 fn try_send() { in try_send() function
Dselect_macro.rs1342 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.rs664 pub fn try_send(&self, buf: &[u8]) -> io::Result<usize> { in try_send() method
/external/rust/crates/tokio/src/sync/mpsc/
Dbounded.rs581 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.rs322 pub(crate) fn try_send(&self, msg: T) -> Result<(), TrySendError<T>> { in try_send() method
Dlist.rs410 pub(crate) fn try_send(&self, msg: T) -> Result<(), TrySendError<T>> { in try_send() method
/external/rust/crates/tokio/src/net/
Dudp.rs641 pub fn try_send(&self, buf: &[u8]) -> io::Result<usize> { in try_send() method
/external/rust/crates/futures-channel/src/mpsc/
Dmod.rs492 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/
Dchannel.rs399 pub fn try_send(&self, msg: T) -> Result<(), TrySendError<T>> { in try_send() method