pub struct AkvKeyReleaseJwtBody {
pub response: AkvKeyReleaseResponse,
}
Expand description
The subset of the JWT payload format (in JSON) defined by Azure Key Vault (AKV) API version > 7.2 that includes the base64-url-encoded wrapped key JSON object. The JWT payload JSON blob looks like
ⓘ
{
..
"response": {
"key": {
..
"key": {
..
"key_hsm": <base64-url encoded wrapped key JSON object>
}
}
}
}
Fields§
§response: AkvKeyReleaseResponse
JSON data
Trait Implementations§
Source§impl Debug for AkvKeyReleaseJwtBody
impl Debug for AkvKeyReleaseJwtBody
Source§impl<'de> Deserialize<'de> for AkvKeyReleaseJwtBody
impl<'de> Deserialize<'de> for AkvKeyReleaseJwtBody
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 AkvKeyReleaseJwtBody
impl RefUnwindSafe for AkvKeyReleaseJwtBody
impl Send for AkvKeyReleaseJwtBody
impl Sync for AkvKeyReleaseJwtBody
impl Unpin for AkvKeyReleaseJwtBody
impl UnwindSafe for AkvKeyReleaseJwtBody
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