do not use default type for FromRequest trait

This commit is contained in:
Nikolay Kim 2020-03-19 09:15:52 +06:00
parent 489551cb35
commit a7bc9502e8

View file

@ -8,13 +8,12 @@ use futures::future::{ok, FutureExt, LocalBoxFuture, Ready};
use crate::http::Payload;
use super::error::{IntoWebError, WebError, WebResponseError};
use super::error_default::DefaultError;
use super::request::HttpRequest;
/// Trait implemented by types that can be extracted from request.
///
/// Types that implement this trait can be used with `Route` handlers.
pub trait FromRequest<Err = DefaultError>: Sized {
pub trait FromRequest<Err>: Sized {
/// The associated error which can be returned.
type Error: WebResponseError<Err>;