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