Home
last modified time | relevance | path

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

/external/rust/android-crates-io/crates/tokio/src/sync/mpsc/
Derror.rs29 pub enum TrySendError<T> { enum
39 impl<T> TrySendError<T> { impl
49 impl<T> fmt::Debug for TrySendError<T> { implementation
58 impl<T> fmt::Display for TrySendError<T> { implementation
71 impl<T> Error for TrySendError<T> {} implementation
73 impl<T> From<SendError<T>> for TrySendError<T> { implementation
Dbounded.rs1318 pub fn try_reserve(&self) -> Result<Permit<'_, T>, TrySendError<()>> { in try_reserve() argument
1396 pub fn try_reserve_many(&self, n: usize) -> Result<PermitIterator<'_, T>, TrySendError<()>> { in try_reserve_many() argument
/external/rust/android-crates-io/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/android-crates-io/crates/futures-channel/src/mpsc/
Dmod.rs159 pub struct TrySendError<T> { struct
160 err: SendError,
161 val: T,
205 impl<T> fmt::Debug for TrySendError<T> { implementation
211 impl<T> fmt::Display for TrySendError<T> { implementation
221 impl<T: core::any::Any> std::error::Error for TrySendError<T> {} implementation
223 impl<T> TrySendError<T> { implementation