#[non_exhaustive]#[repr(i16)]pub enum CertificationDataInner {
PckIdPpidPlainCpusvnPcesvn(Vec<u8>),
PckIdPpidRSA2048CpusvnPcesvn(Vec<u8>),
PckIdPpidRSA3072CpusvnPcesvn(Vec<u8>),
PckLeafCert(Vec<u8>),
PckCertChain(Vec<u8>),
PlatformManifest(Vec<u8>),
}Expand description
Inner Data related to certifying the QE report This is needed to avoid a recursive type
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
PckIdPpidPlainCpusvnPcesvn(Vec<u8>)
PckIdPpidRSA2048CpusvnPcesvn(Vec<u8>)
PckIdPpidRSA3072CpusvnPcesvn(Vec<u8>)
PckLeafCert(Vec<u8>)
PckCertChain(Vec<u8>)
PlatformManifest(Vec<u8>)
Implementations§
Trait Implementations§
Source§impl Clone for CertificationDataInner
impl Clone for CertificationDataInner
Source§fn clone(&self) -> CertificationDataInner
fn clone(&self) -> CertificationDataInner
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CertificationDataInner
impl Debug for CertificationDataInner
impl Eq for CertificationDataInner
Source§impl PartialEq for CertificationDataInner
impl PartialEq for CertificationDataInner
Source§fn eq(&self, other: &CertificationDataInner) -> bool
fn eq(&self, other: &CertificationDataInner) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CertificationDataInner
Auto Trait Implementations§
impl Freeze for CertificationDataInner
impl RefUnwindSafe for CertificationDataInner
impl Send for CertificationDataInner
impl Sync for CertificationDataInner
impl Unpin for CertificationDataInner
impl UnsafeUnpin for CertificationDataInner
impl UnwindSafe for CertificationDataInner
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