pub enum AdvisoryID {
Security(u32),
Documentation(u32),
}
Variants§
Security(u32)
Security Advisory ID - “INTEL-SA-XXXXX” (where XXXXX is a placeholder for a 5-digit number) - representing Security Advisories that can be searched on Intel® Product Security Center Advisories page (https://www.intel.com/content/www/us/en/security-center/default.html)
Documentation(u32)
Document Advisory ID - “INTEL-DOC-XXXXX” (where XXXXX is a placeholder for a 5-digit number) - representing articles containing additional information about the attested platform. The articles can be found under the following URL: https://api.trustedservices.intel.com/documents/{docID}
Trait Implementations§
Source§impl Clone for AdvisoryID
impl Clone for AdvisoryID
Source§fn clone(&self) -> AdvisoryID
fn clone(&self) -> AdvisoryID
Returns a duplicate of the value. Read more
1.0.0 · 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 AdvisoryID
impl Debug for AdvisoryID
Source§impl<'de> Deserialize<'de> for AdvisoryID
impl<'de> Deserialize<'de> for AdvisoryID
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
Source§impl PartialEq for AdvisoryID
impl PartialEq for AdvisoryID
Source§impl Serialize for AdvisoryID
impl Serialize for AdvisoryID
Source§impl ToString for AdvisoryID
impl ToString for AdvisoryID
Source§impl TryFrom<&str> for AdvisoryID
impl TryFrom<&str> for AdvisoryID
impl Eq for AdvisoryID
impl StructuralPartialEq for AdvisoryID
Auto Trait Implementations§
impl Freeze for AdvisoryID
impl RefUnwindSafe for AdvisoryID
impl Send for AdvisoryID
impl Sync for AdvisoryID
impl Unpin for AdvisoryID
impl UnwindSafe for AdvisoryID
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