pub struct PckCertificatesResponse {
pub pck_certs_json: String,
pub issuer_chain: String,
pub fmspc: String,
}
Expand description
Response structure for multiple PCK (Platform Configuration Key) Certificates.
Contains a JSON array of PCK certificates, their issuer chain, and the associated FMSPC value. This struct represents the response for retrieving multiple PCK certificates from the Intel SGX API.
Fields§
§pck_certs_json: String
JSON array containing PCK certificates and their associated TCB levels.
issuer_chain: String
PEM-encoded certificate chain for the PCK certificate issuer. Header name differs between v3 (“PCS-Certificate-Issuer-Chain”) and v4 (“SGX-PCK-Certificate-Issuer-Chain”).
fmspc: String
FMSPC value associated with the certificates (Hex-encoded).
Trait Implementations§
Source§impl Clone for PckCertificatesResponse
impl Clone for PckCertificatesResponse
Source§fn clone(&self) -> PckCertificatesResponse
fn clone(&self) -> PckCertificatesResponse
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 PckCertificatesResponse
impl RefUnwindSafe for PckCertificatesResponse
impl Send for PckCertificatesResponse
impl Sync for PckCertificatesResponse
impl Unpin for PckCertificatesResponse
impl UnwindSafe for PckCertificatesResponse
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