mirror of
https://github.com/actix/actix-extras.git
synced 2025-06-25 01:51:23 +02:00
impl ResponseError for SendError when possible (#619)
This commit is contained in:
@ -5,7 +5,7 @@ use std::string::FromUtf8Error;
|
||||
use std::sync::Mutex;
|
||||
use std::{fmt, io, result};
|
||||
|
||||
use actix::MailboxError;
|
||||
use actix::{MailboxError, SendError};
|
||||
use cookie;
|
||||
use failure::{self, Backtrace, Fail};
|
||||
use futures::Canceled;
|
||||
@ -136,6 +136,10 @@ pub trait ResponseError: Fail + InternalResponseErrorAsFail {
|
||||
}
|
||||
}
|
||||
|
||||
impl<T> ResponseError for SendError<T>
|
||||
where T: Send + Sync + 'static {
|
||||
}
|
||||
|
||||
impl fmt::Display for Error {
|
||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||
fmt::Display::fmt(&self.cause, f)
|
||||
|
Reference in New Issue
Block a user