jwt/token/mod.rs
1//! A structured representation of a JWT.
2
3pub mod signed;
4pub mod verified;
5
6pub struct Unsigned;
7
8pub struct Signed {
9 pub token_string: String,
10}
11
12pub struct Verified;
13
14pub struct Unverified<'a> {
15 pub header_str: &'a str,
16 pub claims_str: &'a str,
17 pub signature_str: &'a str,
18}