Remove trait from `TokenData` struct

This commit is contained in:
Mike Engel 2017-04-21 23:41:25 -06:00
parent 56e2f97c3b
commit cbd9b236da
No known key found for this signature in database
GPG Key ID: 225C4F0D1FDE7CF8
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ use header::Header;
/// The return type of a successful call to decode
#[derive(Debug)]
pub struct TokenData<T: DeserializeOwned> {
pub struct TokenData<T> {
pub header: Header,
pub claims: T
}