pub struct DecodedJweToken {
pub header: HashMap<String, Value>,
pub encrypted_key: String,
pub iv: String,
pub ciphertext: String,
pub tag: String,
pub algorithm: String,
pub encryption: String,
}Expand description
JWE Decoded token data
Fields§
§header: HashMap<String, Value>§encrypted_key: String§iv: String§ciphertext: String§tag: String§algorithm: String§encryption: StringTrait Implementations§
Source§impl Clone for DecodedJweToken
impl Clone for DecodedJweToken
Source§fn clone(&self) -> DecodedJweToken
fn clone(&self) -> DecodedJweToken
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for DecodedJweToken
impl RefUnwindSafe for DecodedJweToken
impl Send for DecodedJweToken
impl Sync for DecodedJweToken
impl Unpin for DecodedJweToken
impl UnsafeUnpin for DecodedJweToken
impl UnwindSafe for DecodedJweToken
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