#[non_exhaustive]pub struct GetVulnerabilityOccurrencesSummaryRequest {
pub parent: String,
pub filter: String,
}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 copy 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<'de> Deserialize<'de> for GetVulnerabilityOccurrencesSummaryRequest
impl<'de> Deserialize<'de> for GetVulnerabilityOccurrencesSummaryRequest
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 Message for GetVulnerabilityOccurrencesSummaryRequest
impl Message for GetVulnerabilityOccurrencesSummaryRequest
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