pub struct Jwt {
pub bytes: Bytes,
pub header: Header,
pub header_bytes: Bytes,
pub payload: Payload,
pub payload_bytes: Bytes,
pub signature: Vec<u8>,
pub signature_bytes: Bytes,
}
Fields§
§bytes: Bytes
§header: Header
§header_bytes: Bytes
§payload: Payload
§payload_bytes: Bytes
§signature: Vec<u8>
§signature_bytes: Bytes
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for Jwt
impl RefUnwindSafe for Jwt
impl Send for Jwt
impl Sync for Jwt
impl Unpin for Jwt
impl UnwindSafe for Jwt
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more