pub struct PckCrlResponse {
pub crl_data: Vec<u8>,
pub issuer_chain: String,
}
Expand description
Response structure for Platform Configuration Key Certificate Revocation List (PCK CRL).
Contains the CRL data and its issuer chain for validating platform configuration keys.
Fields§
§crl_data: Vec<u8>
CRL data (PEM or DER encoded).
issuer_chain: String
PEM-encoded certificate chain for the CRL issuer. Header name differs between v3 (“PCS-CRL-Issuer-Chain”) and v4 (“SGX-PCK-CRL-Issuer-Chain”).
Trait Implementations§
Source§impl Clone for PckCrlResponse
impl Clone for PckCrlResponse
Source§fn clone(&self) -> PckCrlResponse
fn clone(&self) -> PckCrlResponse
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 PckCrlResponse
impl RefUnwindSafe for PckCrlResponse
impl Send for PckCrlResponse
impl Sync for PckCrlResponse
impl Unpin for PckCrlResponse
impl UnwindSafe for PckCrlResponse
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