pub struct PaginatedNotificationTransportList {
pub pagination: Box<Pagination>,
pub results: Vec<NotificationTransport>,
}
Fields§
§pagination: Box<Pagination>
§results: Vec<NotificationTransport>
Implementations§
Source§impl PaginatedNotificationTransportList
impl PaginatedNotificationTransportList
pub fn new( pagination: Pagination, results: Vec<NotificationTransport>, ) -> PaginatedNotificationTransportList
Trait Implementations§
Source§impl Clone for PaginatedNotificationTransportList
impl Clone for PaginatedNotificationTransportList
Source§fn clone(&self) -> PaginatedNotificationTransportList
fn clone(&self) -> PaginatedNotificationTransportList
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 PaginatedNotificationTransportList
impl Default for PaginatedNotificationTransportList
Source§fn default() -> PaginatedNotificationTransportList
fn default() -> PaginatedNotificationTransportList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PaginatedNotificationTransportList
impl<'de> Deserialize<'de> for PaginatedNotificationTransportList
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 PaginatedNotificationTransportList
impl PartialEq for PaginatedNotificationTransportList
Source§fn eq(&self, other: &PaginatedNotificationTransportList) -> bool
fn eq(&self, other: &PaginatedNotificationTransportList) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PaginatedNotificationTransportList
Auto Trait Implementations§
impl Freeze for PaginatedNotificationTransportList
impl RefUnwindSafe for PaginatedNotificationTransportList
impl Send for PaginatedNotificationTransportList
impl Sync for PaginatedNotificationTransportList
impl Unpin for PaginatedNotificationTransportList
impl UnwindSafe for PaginatedNotificationTransportList
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