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.rs678 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.rs164 pub struct TrySendError<T> { struct
165 err: SendError,
166 val: T,
210 impl<T> fmt::Debug for TrySendError<T> { implementation
218 impl<T> fmt::Display for TrySendError<T> { implementation
228 impl<T: core::any::Any> std::error::Error for TrySendError<T> {} implementation
230 impl<T> TrySendError<T> { implementation