Home
last modified time | relevance | path

Searched defs:TrySendError (Results 1 – 4 of 4) sorted by relevance

/external/rust/crates/tokio/src/sync/mpsc/
Derror.rs23 pub enum TrySendError<T> { enum
33 impl<T: fmt::Debug> Error for TrySendError<T> {} implementation
35 impl<T> fmt::Display for TrySendError<T> { implementation
48 impl<T> From<SendError<T>> for TrySendError<T> { implementation
Dbounded.rs911 pub fn try_reserve(&self) -> Result<Permit<'_, T>, TrySendError<()>> { in try_reserve() argument
/external/rust/crates/crossbeam-channel/src/
Derr.rs20 pub enum TrySendError<T> { enum
152 impl<T> fmt::Debug for TrySendError<T> { implementation
161 impl<T> fmt::Display for TrySendError<T> { implementation
170 impl<T: Send> error::Error for TrySendError<T> {} implementation
172 impl<T> From<SendError<T>> for TrySendError<T> { implementation
180 impl<T> TrySendError<T> { implementation
/external/rust/crates/futures-channel/src/mpsc/
Dmod.rs158 pub struct TrySendError<T> { struct
159 err: SendError,
160 val: T,
204 impl<T> fmt::Debug for TrySendError<T> { implementation
210 impl<T> fmt::Display for TrySendError<T> { implementation
220 impl<T: core::any::Any> std::error::Error for TrySendError<T> {} implementation
222 impl<T> TrySendError<T> { implementation