pub struct CpeParameters {
pub cpe_name_id: Option<String>,
pub cpe_match_string: Option<String>,
pub keyword: Option<Keyword>,
pub last_mod: Option<LastModDate>,
pub match_criteria_id: Option<String>,
pub limit_offset: Option<LimitOffset>,
}Expand description
§Products
This documentation assumes that you already understand at least one common programming language and are generally familiar with JSON RESTful services. JSON specifies the format of the data returned by the REST service. REST refers to a style of services that allow computers to communicate via HTTP over the Internet. Click here for a list of best practices and additional information on where to start. The NVD is also documenting popular workflows to assist developers working with the APIs.
Please note, new users are discouraged from starting with the 1.0 API as it will be retired in 2023 but you may still view documentation for the 1.0 Vulnerability and 1.0 Product APIs.
Fields§
§cpe_name_id: Option<String>§cpe_match_string: Option<String>§keyword: Option<Keyword>§last_mod: Option<LastModDate>§match_criteria_id: Option<String>§limit_offset: Option<LimitOffset>Trait Implementations§
Source§impl Clone for CpeParameters
impl Clone for CpeParameters
Source§fn clone(&self) -> CpeParameters
fn clone(&self) -> CpeParameters
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 CpeParameters
impl Debug for CpeParameters
Source§impl Default for CpeParameters
impl Default for CpeParameters
Source§fn default() -> CpeParameters
fn default() -> CpeParameters
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CpeParameters
impl<'de> Deserialize<'de> for CpeParameters
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 CpeParameters
impl PartialEq for CpeParameters
Source§impl Serialize for CpeParameters
impl Serialize for CpeParameters
impl Eq for CpeParameters
impl StructuralPartialEq for CpeParameters
Auto Trait Implementations§
impl Freeze for CpeParameters
impl RefUnwindSafe for CpeParameters
impl Send for CpeParameters
impl Sync for CpeParameters
impl Unpin for CpeParameters
impl UnwindSafe for CpeParameters
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.