#[non_exhaustive]pub struct ListFindingSummariesRequest {
pub parent: String,
pub page_size: i32,
pub page_token: String,
pub filter: String,
pub end_time: Option<Timestamp>,
/* private fields */
}Expand description
The request message for [ListFindingSummaries][].
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 parent scope for the framework overview page.
page_size: i32Optional. The requested page size. The server might return fewer items than requested. If unspecified, the server picks an appropriate default.
page_token: StringOptional. A token that identifies the page of results that the server should return.
filter: StringOptional. The filtering results.
end_time: Option<Timestamp>👎Deprecated
Optional. The end time of the finding summary.
Implementations§
Source§impl ListFindingSummariesRequest
impl ListFindingSummariesRequest
pub fn new() -> Self
Sourcepub fn set_parent<T: Into<String>>(self, v: T) -> Self
pub fn set_parent<T: Into<String>>(self, v: T) -> Self
Sourcepub fn set_page_size<T: Into<i32>>(self, v: T) -> Self
pub fn set_page_size<T: Into<i32>>(self, v: T) -> Self
Sourcepub fn set_page_token<T: Into<String>>(self, v: T) -> Self
pub fn set_page_token<T: Into<String>>(self, v: T) -> Self
Sets the value of page_token.
§Example
ⓘ
let x = ListFindingSummariesRequest::new().set_page_token("example");Sourcepub fn set_filter<T: Into<String>>(self, v: T) -> Self
pub fn set_filter<T: Into<String>>(self, v: T) -> Self
Sourcepub fn set_end_time<T>(self, v: T) -> Self
👎Deprecated
pub fn set_end_time<T>(self, v: T) -> Self
Sourcepub fn set_or_clear_end_time<T>(self, v: Option<T>) -> Self
👎Deprecated
pub fn set_or_clear_end_time<T>(self, v: Option<T>) -> Self
Trait Implementations§
Source§impl Clone for ListFindingSummariesRequest
impl Clone for ListFindingSummariesRequest
Source§fn clone(&self) -> ListFindingSummariesRequest
fn clone(&self) -> ListFindingSummariesRequest
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 ListFindingSummariesRequest
impl Debug for ListFindingSummariesRequest
Source§impl Default for ListFindingSummariesRequest
impl Default for ListFindingSummariesRequest
Source§fn default() -> ListFindingSummariesRequest
fn default() -> ListFindingSummariesRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ListFindingSummariesRequest
Auto Trait Implementations§
impl Freeze for ListFindingSummariesRequest
impl RefUnwindSafe for ListFindingSummariesRequest
impl Send for ListFindingSummariesRequest
impl Sync for ListFindingSummariesRequest
impl Unpin for ListFindingSummariesRequest
impl UnsafeUnpin for ListFindingSummariesRequest
impl UnwindSafe for ListFindingSummariesRequest
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