Enum calloop::channel::TrySendError [−][src]
pub enum TrySendError<T> {
Io(Error),
Full(T),
Disconnected(T),
}Variants
Io(Error)Full(T)Disconnected(T)
Trait Implementations
impl<T> Error for TrySendError<T> where
T: Any, [src]
impl<T> Error for TrySendError<T> where
T: Any, fn description(&self) -> &str[src]
fn description(&self) -> &strThis method is soft-deprecated. Read more
fn cause(&self) -> Option<&Error>1.0.0[src]
fn cause(&self) -> Option<&Error>1.0.0
[src]The lower-level cause of this error, if any. Read more
impl<T> Display for TrySendError<T>[src]
impl<T> Display for TrySendError<T>fn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter. Read more
impl<T> Debug for TrySendError<T>[src]
impl<T> Debug for TrySendError<T>fn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter. Read more
impl<T> From<SendError<T>> for TrySendError<T>[src]
impl<T> From<SendError<T>> for TrySendError<T>fn from(src: SendError<T>) -> TrySendError<T>[src]
fn from(src: SendError<T>) -> TrySendError<T>Performs the conversion.
impl<T> From<Error> for TrySendError<T>[src]
impl<T> From<Error> for TrySendError<T>fn from(src: Error) -> TrySendError<T>[src]
fn from(src: Error) -> TrySendError<T>Performs the conversion.
impl<T> From<TrySendError<T>> for TrySendError<T>[src]
impl<T> From<TrySendError<T>> for TrySendError<T>fn from(src: TrySendError<T>) -> TrySendError<T>[src]
fn from(src: TrySendError<T>) -> TrySendError<T>Performs the conversion.
Auto Trait Implementations
impl<T> Send for TrySendError<T> where
T: Send,
impl<T> Send for TrySendError<T> where
T: Send, impl<T> Sync for TrySendError<T> where
T: Sync,
impl<T> Sync for TrySendError<T> where
T: Sync,