#[non_exhaustive]pub struct ListExclusionsResponse {
pub exclusions: Vec<LogExclusion>,
pub next_page_token: String,
/* private fields */
}Expand description
Result returned from ListExclusions.
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.exclusions: Vec<LogExclusion>A list of exclusions.
next_page_token: StringIf there might be more results than appear in this response, then
nextPageToken is included. To get the next set of results, call the same
method again using the value of nextPageToken as pageToken.
Implementations§
Source§impl ListExclusionsResponse
impl ListExclusionsResponse
pub fn new() -> Self
Sourcepub fn set_exclusions<T, V>(self, v: T) -> Self
pub fn set_exclusions<T, V>(self, v: T) -> Self
Sets the value of exclusions.
Sourcepub fn set_next_page_token<T: Into<String>>(self, v: T) -> Self
pub fn set_next_page_token<T: Into<String>>(self, v: T) -> Self
Sets the value of next_page_token.
Trait Implementations§
Source§impl Clone for ListExclusionsResponse
impl Clone for ListExclusionsResponse
Source§fn clone(&self) -> ListExclusionsResponse
fn clone(&self) -> ListExclusionsResponse
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 ListExclusionsResponse
impl Debug for ListExclusionsResponse
Source§impl Default for ListExclusionsResponse
impl Default for ListExclusionsResponse
Source§fn default() -> ListExclusionsResponse
fn default() -> ListExclusionsResponse
Returns the “default value” for a type. Read more
Source§impl Message for ListExclusionsResponse
impl Message for ListExclusionsResponse
Source§impl PartialEq for ListExclusionsResponse
impl PartialEq for ListExclusionsResponse
impl StructuralPartialEq for ListExclusionsResponse
Auto Trait Implementations§
impl Freeze for ListExclusionsResponse
impl RefUnwindSafe for ListExclusionsResponse
impl Send for ListExclusionsResponse
impl Sync for ListExclusionsResponse
impl Unpin for ListExclusionsResponse
impl UnwindSafe for ListExclusionsResponse
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