pub struct EnclaveIdentityResponse {
pub enclave_identity_json: EnclaveIdentityJson,
pub issuer_chain: String,
}
Expand description
Response structure for Enclave Identity Information.
Contains the JSON representation of enclave identity details for QE, QvE, or QAE, along with its issuer chain.
Fields§
§enclave_identity_json: EnclaveIdentityJson
JSON containing information about the QE, QvE, or QAE.
issuer_chain: String
PEM-encoded certificate chain for the Enclave Identity signer. Header name seems consistent (“SGX-Enclave-Identity-Issuer-Chain”).
Trait Implementations§
Source§impl Clone for EnclaveIdentityResponse
impl Clone for EnclaveIdentityResponse
Source§fn clone(&self) -> EnclaveIdentityResponse
fn clone(&self) -> EnclaveIdentityResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for EnclaveIdentityResponse
impl RefUnwindSafe for EnclaveIdentityResponse
impl Send for EnclaveIdentityResponse
impl Sync for EnclaveIdentityResponse
impl Unpin for EnclaveIdentityResponse
impl UnwindSafe for EnclaveIdentityResponse
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