mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 05:17:39 +03:00
do not use default type for FromRequest trait
This commit is contained in:
parent
489551cb35
commit
a7bc9502e8
1 changed files with 1 additions and 2 deletions
|
@ -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>;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue