pub struct ListFindingsResponse {
pub list_findings_results: Option<Vec<ListFindingsResult>>,
pub next_page_token: Option<String>,
pub read_time: Option<DateTime<Utc>>,
pub total_size: Option<i32>,
}Expand description
Response message for listing findings.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- sources findings list folders (response)
- sources findings list organizations (response)
- sources findings list projects (response)
Fields§
§list_findings_results: Option<Vec<ListFindingsResult>>Findings matching the list request.
next_page_token: Option<String>Token to retrieve the next page of results, or empty if there are no more results.
read_time: Option<DateTime<Utc>>Time used for executing the list request.
total_size: Option<i32>The total number of findings matching the query.
Trait Implementations§
Source§impl Clone for ListFindingsResponse
impl Clone for ListFindingsResponse
Source§fn clone(&self) -> ListFindingsResponse
fn clone(&self) -> ListFindingsResponse
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 ListFindingsResponse
impl Debug for ListFindingsResponse
Source§impl Default for ListFindingsResponse
impl Default for ListFindingsResponse
Source§fn default() -> ListFindingsResponse
fn default() -> ListFindingsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListFindingsResponse
impl<'de> Deserialize<'de> for ListFindingsResponse
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 Serialize for ListFindingsResponse
impl Serialize for ListFindingsResponse
impl ResponseResult for ListFindingsResponse
Auto Trait Implementations§
impl Freeze for ListFindingsResponse
impl RefUnwindSafe for ListFindingsResponse
impl Send for ListFindingsResponse
impl Sync for ListFindingsResponse
impl Unpin for ListFindingsResponse
impl UnwindSafe for ListFindingsResponse
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