Enum calloop::channel::SendError [−][src]
pub enum SendError<T> {
Io(Error),
Disconnected(T),
}Variants
Io(Error)Disconnected(T)
Trait Implementations
impl<T> Error for SendError<T> where
T: Any, [src]
impl<T> Error for SendError<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 SendError<T>[src]
impl<T> Display for SendError<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 SendError<T>[src]
impl<T> Debug for SendError<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 SendError<T>[src]
impl<T> From<SendError<T>> for SendError<T>impl<T> From<Error> for SendError<T>[src]
impl<T> From<Error> for SendError<T>