pub struct ListTaskPushNotificationConfigsRequest {
pub task_id: TaskId,
pub page_size: Option<i32>,
pub page_token: Option<String>,
pub tenant: Option<String>,
}Expand description
Request to list push configs for a task.
Fields§
§task_id: TaskId§page_size: Option<i32>§page_token: Option<String>§tenant: Option<String>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
Source§impl PartialEq for ListTaskPushNotificationConfigsRequest
impl PartialEq for ListTaskPushNotificationConfigsRequest
Source§fn eq(&self, other: &ListTaskPushNotificationConfigsRequest) -> bool
fn eq(&self, other: &ListTaskPushNotificationConfigsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListTaskPushNotificationConfigsRequest
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