#[non_exhaustive]pub struct GetVulnerabilityOccurrencesSummaryRequest {
pub parent: String,
pub filter: String,
/* private fields */
}Expand description
Request to get a vulnerability summary for some set of occurrences.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.parent: StringRequired. The name of the project to get a vulnerability summary for in the
form of projects/[PROJECT_ID].
filter: StringThe filter expression.
Implementations§
Trait Implementations§
Source§impl Clone for GetVulnerabilityOccurrencesSummaryRequest
impl Clone for GetVulnerabilityOccurrencesSummaryRequest
Source§fn clone(&self) -> GetVulnerabilityOccurrencesSummaryRequest
fn clone(&self) -> GetVulnerabilityOccurrencesSummaryRequest
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 Default for GetVulnerabilityOccurrencesSummaryRequest
impl Default for GetVulnerabilityOccurrencesSummaryRequest
Source§fn default() -> GetVulnerabilityOccurrencesSummaryRequest
fn default() -> GetVulnerabilityOccurrencesSummaryRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetVulnerabilityOccurrencesSummaryRequest
impl PartialEq for GetVulnerabilityOccurrencesSummaryRequest
Source§fn eq(&self, other: &GetVulnerabilityOccurrencesSummaryRequest) -> bool
fn eq(&self, other: &GetVulnerabilityOccurrencesSummaryRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetVulnerabilityOccurrencesSummaryRequest
Auto Trait Implementations§
impl Freeze for GetVulnerabilityOccurrencesSummaryRequest
impl RefUnwindSafe for GetVulnerabilityOccurrencesSummaryRequest
impl Send for GetVulnerabilityOccurrencesSummaryRequest
impl Sync for GetVulnerabilityOccurrencesSummaryRequest
impl Unpin for GetVulnerabilityOccurrencesSummaryRequest
impl UnwindSafe for GetVulnerabilityOccurrencesSummaryRequest
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