(_: tokio::sync::mpsc::error::SendError<T>)
| 20 | |
| 21 | impl<T> From<tokio::sync::mpsc::error::SendError<T>> for EngineError { |
| 22 | fn from(_: tokio::sync::mpsc::error::SendError<T>) -> Self { |
| 23 | EngineError::Executor(ExecutorError::ChannelClosed) |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | impl<T> From<tokio::sync::mpsc::error::TrySendError<T>> for EngineError { |