pub struct SignedAssertion {
pub claims: AssertionClaims,
pub signature: HybridSignature,
pub version: String,
}Expand description
A signed MRVB assertion token.
This combines the assertion claims with a cryptographic signature.
Fields§
§claims: AssertionClaimsThe assertion claims (payload)
signature: HybridSignatureThe cryptographic signature
version: StringToken format version (for future compatibility)
Implementations§
Trait Implementations§
Source§impl Clone for SignedAssertion
impl Clone for SignedAssertion
Source§fn clone(&self) -> SignedAssertion
fn clone(&self) -> SignedAssertion
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 moreSource§impl Debug for SignedAssertion
impl Debug for SignedAssertion
Source§impl<'de> Deserialize<'de> for SignedAssertion
impl<'de> Deserialize<'de> for SignedAssertion
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SignedAssertion
impl RefUnwindSafe for SignedAssertion
impl Send for SignedAssertion
impl Sync for SignedAssertion
impl Unpin for SignedAssertion
impl UnsafeUnpin for SignedAssertion
impl UnwindSafe for SignedAssertion
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