pub struct ListTaskPushNotificationConfigsResponse {
pub configs: Vec<TaskPushNotificationConfig>,
pub next_page_token: Option<String>,
}Expand description
Response for listing push notification configs.
Fields§
§configs: Vec<TaskPushNotificationConfig>The configs.
next_page_token: Option<String>Pagination token for next page.
Trait Implementations§
Source§impl Clone for ListTaskPushNotificationConfigsResponse
impl Clone for ListTaskPushNotificationConfigsResponse
Source§fn clone(&self) -> ListTaskPushNotificationConfigsResponse
fn clone(&self) -> ListTaskPushNotificationConfigsResponse
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 ListTaskPushNotificationConfigsResponse
impl<'de> Deserialize<'de> for ListTaskPushNotificationConfigsResponse
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 ListTaskPushNotificationConfigsResponse
impl RefUnwindSafe for ListTaskPushNotificationConfigsResponse
impl Send for ListTaskPushNotificationConfigsResponse
impl Sync for ListTaskPushNotificationConfigsResponse
impl Unpin for ListTaskPushNotificationConfigsResponse
impl UnsafeUnpin for ListTaskPushNotificationConfigsResponse
impl UnwindSafe for ListTaskPushNotificationConfigsResponse
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