pub struct CveDatabaseFile {
pub version: String,
pub updated_at: String,
pub entries: Vec<CveEntry>,
}Expand description
CVE database file format
Fields§
§version: String§updated_at: String§entries: Vec<CveEntry>Trait Implementations§
Source§impl Clone for CveDatabaseFile
impl Clone for CveDatabaseFile
Source§fn clone(&self) -> CveDatabaseFile
fn clone(&self) -> CveDatabaseFile
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 CveDatabaseFile
impl Debug for CveDatabaseFile
Source§impl<'de> Deserialize<'de> for CveDatabaseFile
impl<'de> Deserialize<'de> for CveDatabaseFile
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
Auto Trait Implementations§
impl Freeze for CveDatabaseFile
impl RefUnwindSafe for CveDatabaseFile
impl Send for CveDatabaseFile
impl Sync for CveDatabaseFile
impl Unpin for CveDatabaseFile
impl UnwindSafe for CveDatabaseFile
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