| 17 | /// The return type of a successful call to [decode](fn.decode.html). |
| 18 | #[derive(Debug)] |
| 19 | pub struct TokenData<T> { |
| 20 | /// The decoded JWT header |
| 21 | pub header: Header, |
| 22 | /// The decoded JWT claims |
| 23 | pub claims: T, |
| 24 | } |
| 25 | |
| 26 | impl<T> Clone for TokenData<T> |
| 27 | where |
nothing calls this directly
no outgoing calls
no test coverage detected