pub struct NotificationAttemptsPaginatedResponse {
pub data: Vec<NotificationAttempt>,
pub next: Option<Option<String>>,
}Fields§
§data: Vec<NotificationAttempt>The data of the current page
next: Option<Option<String>>The ID of the next Page
Implementations§
Source§impl NotificationAttemptsPaginatedResponse
impl NotificationAttemptsPaginatedResponse
pub fn new( data: Vec<NotificationAttempt>, ) -> NotificationAttemptsPaginatedResponse
Trait Implementations§
Source§impl Clone for NotificationAttemptsPaginatedResponse
impl Clone for NotificationAttemptsPaginatedResponse
Source§fn clone(&self) -> NotificationAttemptsPaginatedResponse
fn clone(&self) -> NotificationAttemptsPaginatedResponse
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 NotificationAttemptsPaginatedResponse
impl Default for NotificationAttemptsPaginatedResponse
Source§fn default() -> NotificationAttemptsPaginatedResponse
fn default() -> NotificationAttemptsPaginatedResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NotificationAttemptsPaginatedResponse
impl<'de> Deserialize<'de> for NotificationAttemptsPaginatedResponse
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 NotificationAttemptsPaginatedResponse
impl PartialEq for NotificationAttemptsPaginatedResponse
Source§fn eq(&self, other: &NotificationAttemptsPaginatedResponse) -> bool
fn eq(&self, other: &NotificationAttemptsPaginatedResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NotificationAttemptsPaginatedResponse
Auto Trait Implementations§
impl Freeze for NotificationAttemptsPaginatedResponse
impl RefUnwindSafe for NotificationAttemptsPaginatedResponse
impl Send for NotificationAttemptsPaginatedResponse
impl Sync for NotificationAttemptsPaginatedResponse
impl Unpin for NotificationAttemptsPaginatedResponse
impl UnwindSafe for NotificationAttemptsPaginatedResponse
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