Enum actix_web::server::AcceptorError
source · pub enum AcceptorError<T> {
Service(T),
Io(Error),
Timeout,
}Expand description
Errors produced by AcceptorError service.
Variants
Service(T)
The inner service error
Io(Error)
Io specific error
Timeout
The request did not complete within the specified timeout.
Trait Implementations
Auto Trait Implementations
impl<T> !RefUnwindSafe for AcceptorError<T>
impl<T> Send for AcceptorError<T>where
T: Send,
impl<T> Sync for AcceptorError<T>where
T: Sync,
impl<T> Unpin for AcceptorError<T>where
T: Unpin,
impl<T> !UnwindSafe for AcceptorError<T>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more