pub struct CredentialRequest {
pub credential_configuration_id: String,
pub proof_jwt: String,
}Expand description
The wallet’s Credential Request: an access token (= the redeemed pre-auth
code, in this minimal flow) + a holder-key proof (jwt proof type) so
the issued credential can be cnf-bound to the holder.
Fields§
§credential_configuration_id: String§proof_jwt: StringThe holder key-possession proof JWT (typ: openid4vci-proof+jwt).
Trait Implementations§
Source§impl Clone for CredentialRequest
impl Clone for CredentialRequest
Source§impl Debug for CredentialRequest
impl Debug for CredentialRequest
Source§impl<'de> Deserialize<'de> for CredentialRequest
impl<'de> Deserialize<'de> for CredentialRequest
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 CredentialRequest
impl RefUnwindSafe for CredentialRequest
impl Send for CredentialRequest
impl Sync for CredentialRequest
impl Unpin for CredentialRequest
impl UnsafeUnpin for CredentialRequest
impl UnwindSafe for CredentialRequest
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