pub struct TokenMetadataEntry {
pub value: &'static str,
pub description: &'static str,
pub cve_file: &'static CveFileMetadata,
}Expand description
Per-token metadata published by exactly one CveFileMetadata.
Fields§
§value: &'static strCanonical CVE value, e.g., "NOFORN" or "S".
description: &'static strLong-form description, e.g., "NOT RELEASABLE TO FOREIGN NATIONALS". Empty when the source CVE file
did not provide a description.
cve_file: &'static CveFileMetadataCVE file that published this token.
Trait Implementations§
Source§impl Clone for TokenMetadataEntry
impl Clone for TokenMetadataEntry
Source§fn clone(&self) -> TokenMetadataEntry
fn clone(&self) -> TokenMetadataEntry
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 TokenMetadataEntry
impl Debug for TokenMetadataEntry
impl Copy for TokenMetadataEntry
Auto Trait Implementations§
impl Freeze for TokenMetadataEntry
impl RefUnwindSafe for TokenMetadataEntry
impl Send for TokenMetadataEntry
impl Sync for TokenMetadataEntry
impl Unpin for TokenMetadataEntry
impl UnsafeUnpin for TokenMetadataEntry
impl UnwindSafe for TokenMetadataEntry
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