pub struct ListFindingsReportsResponse {
pub findings_report_summaries: Vec<FindingsReportSummary>,
pub next_token: Option<String>,
}Expand description
The structure representing the ListFindingsReportsResponse.
Fields§
§findings_report_summaries: Vec<FindingsReportSummary>The list of analysis results summaries.
next_token: Option<String>The nextToken value to include in a future ListFindingsReports request. When the results of a ListFindingsReports request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.
Trait Implementations§
Source§impl Clone for ListFindingsReportsResponse
impl Clone for ListFindingsReportsResponse
Source§fn clone(&self) -> ListFindingsReportsResponse
fn clone(&self) -> ListFindingsReportsResponse
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 ListFindingsReportsResponse
impl Debug for ListFindingsReportsResponse
Source§impl Default for ListFindingsReportsResponse
impl Default for ListFindingsReportsResponse
Source§fn default() -> ListFindingsReportsResponse
fn default() -> ListFindingsReportsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListFindingsReportsResponse
impl<'de> Deserialize<'de> for ListFindingsReportsResponse
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
impl StructuralPartialEq for ListFindingsReportsResponse
Auto Trait Implementations§
impl Freeze for ListFindingsReportsResponse
impl RefUnwindSafe for ListFindingsReportsResponse
impl Send for ListFindingsReportsResponse
impl Sync for ListFindingsReportsResponse
impl Unpin for ListFindingsReportsResponse
impl UnwindSafe for ListFindingsReportsResponse
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