1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-10-21 17:33:59 +00:00

fix guide example

This commit is contained in:
Nikolay Kim 2018-01-20 21:40:18 -08:00
parent f5f78d79e6
commit f55ff24925

View file

@ -116,7 +116,8 @@ specific error response. We can use helper types for first example with custom e
#[macro_use] extern crate failure;
use actix_web::*;
#[derive(Debug)]
#[derive(Fail, Debug)]
#[fail(display="Error {}", name)]
struct MyError {
name: &'static str
}