mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-05 13:57:39 +03:00
use Result intead of HandlerResult
This commit is contained in:
parent
c800bf55f5
commit
a87784ba15
4 changed files with 6 additions and 9 deletions
|
@ -5,6 +5,7 @@ extern crate env_logger;
|
|||
extern crate futures;
|
||||
|
||||
use actix_web::*;
|
||||
use actix_web::error::Result;
|
||||
use futures::stream::{once, Once};
|
||||
|
||||
/// somple handle
|
||||
|
@ -32,8 +33,7 @@ fn index_async(req: &mut HttpRequest, _payload: Payload, state: &())
|
|||
}
|
||||
|
||||
/// handle with path parameters like `/user/{name}/`
|
||||
fn with_param(req: &mut HttpRequest, _payload: Payload, state: &())
|
||||
-> HandlerResult<HttpResponse>
|
||||
fn with_param(req: &mut HttpRequest, _payload: Payload, state: &()) -> Result<HttpResponse>
|
||||
{
|
||||
println!("{:?}", req);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue