Enum nvd_api::pagination::Object  
source · pub enum Object {
    Vulnerabilities(Vec<Vulnerabilities>),
    CveChanges(Vec<CveChanges>),
    Products(Vec<Products>),
    MatchStrings(Vec<MatchStrings>),
    Error {
        error: ErrorResponse,
    },
}Variants§
Vulnerabilities(Vec<Vulnerabilities>)
CveChanges(Vec<CveChanges>)
Products(Vec<Products>)
MatchStrings(Vec<MatchStrings>)
Error
Fields
§
error: ErrorResponseTrait Implementations§
source§impl<'de> Deserialize<'de> for Object
 
impl<'de> Deserialize<'de> for Object
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 Object
 
impl PartialEq for Object
impl StructuralPartialEq for Object
Auto Trait Implementations§
impl RefUnwindSafe for Object
impl Send for Object
impl Sync for Object
impl Unpin for Object
impl UnwindSafe for Object
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