#[non_exhaustive]pub struct ListNotificationChannelDescriptorsRequest {
pub name: String,
pub page_size: i32,
pub page_token: String,
/* private fields */
}Expand description
The ListNotificationChannelDescriptors request.
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.name: StringRequired. The REST resource name of the parent from which to retrieve the notification channel descriptors. The expected syntax is:
projects/[PROJECT_ID_OR_NUMBER]Note that this names the parent container in which to look for the descriptors; to retrieve a single descriptor by name, use the GetNotificationChannelDescriptor operation, instead.
page_size: i32The maximum number of results to return in a single response. If not set to a positive number, a reasonable value will be chosen by the service.
page_token: StringIf non-empty, page_token must contain a value returned as the
next_page_token in a previous response to request the next set
of results.
Implementations§
Trait Implementations§
Source§impl Clone for ListNotificationChannelDescriptorsRequest
impl Clone for ListNotificationChannelDescriptorsRequest
Source§fn clone(&self) -> ListNotificationChannelDescriptorsRequest
fn clone(&self) -> ListNotificationChannelDescriptorsRequest
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 Default for ListNotificationChannelDescriptorsRequest
impl Default for ListNotificationChannelDescriptorsRequest
Source§fn default() -> ListNotificationChannelDescriptorsRequest
fn default() -> ListNotificationChannelDescriptorsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListNotificationChannelDescriptorsRequest
impl PartialEq for ListNotificationChannelDescriptorsRequest
Source§fn eq(&self, other: &ListNotificationChannelDescriptorsRequest) -> bool
fn eq(&self, other: &ListNotificationChannelDescriptorsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListNotificationChannelDescriptorsRequest
Auto Trait Implementations§
impl Freeze for ListNotificationChannelDescriptorsRequest
impl RefUnwindSafe for ListNotificationChannelDescriptorsRequest
impl Send for ListNotificationChannelDescriptorsRequest
impl Sync for ListNotificationChannelDescriptorsRequest
impl Unpin for ListNotificationChannelDescriptorsRequest
impl UnwindSafe for ListNotificationChannelDescriptorsRequest
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