Remove unused bounds in type alias.

This commit is contained in:
Sergio Benitez 2018-03-04 13:35:37 -08:00
parent 845b0470a6
commit 29d56900c6
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ use rocket::State;
type MyState<'r> = State<'r, usize>;
type MyVecState<'r, T: 'r> = State<'r, Vec<T>>;
type MyVecState<'r, T> = State<'r, Vec<T>>;
#[get("/")]
fn index(state: MyState) { }