pub struct ListTaskPushNotificationConfigsRequest {
pub tenant: Option<String>,
pub task_id: String,
pub page_size: Option<i32>,
pub page_token: Option<String>,
}Expand description
Request for tasks/pushNotificationConfig/list.
Fields§
§tenant: Option<String>Optional tenant identifier.
task_id: StringParent task identifier.
page_size: Option<i32>Maximum configs to return.
page_token: Option<String>Pagination token.
Trait Implementations§
Source§impl Clone for ListTaskPushNotificationConfigsRequest
impl Clone for ListTaskPushNotificationConfigsRequest
Source§fn clone(&self) -> ListTaskPushNotificationConfigsRequest
fn clone(&self) -> ListTaskPushNotificationConfigsRequest
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<'de> Deserialize<'de> for ListTaskPushNotificationConfigsRequest
impl<'de> Deserialize<'de> for ListTaskPushNotificationConfigsRequest
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
Auto Trait Implementations§
impl Freeze for ListTaskPushNotificationConfigsRequest
impl RefUnwindSafe for ListTaskPushNotificationConfigsRequest
impl Send for ListTaskPushNotificationConfigsRequest
impl Sync for ListTaskPushNotificationConfigsRequest
impl Unpin for ListTaskPushNotificationConfigsRequest
impl UnsafeUnpin for ListTaskPushNotificationConfigsRequest
impl UnwindSafe for ListTaskPushNotificationConfigsRequest
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