pub struct PaginatedSystemTaskList {
pub pagination: Box<Pagination>,
pub results: Vec<SystemTask>,
}
Fields§
§pagination: Box<Pagination>
§results: Vec<SystemTask>
Implementations§
Source§impl PaginatedSystemTaskList
impl PaginatedSystemTaskList
pub fn new( pagination: Pagination, results: Vec<SystemTask>, ) -> PaginatedSystemTaskList
Trait Implementations§
Source§impl Clone for PaginatedSystemTaskList
impl Clone for PaginatedSystemTaskList
Source§fn clone(&self) -> PaginatedSystemTaskList
fn clone(&self) -> PaginatedSystemTaskList
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 Debug for PaginatedSystemTaskList
impl Debug for PaginatedSystemTaskList
Source§impl Default for PaginatedSystemTaskList
impl Default for PaginatedSystemTaskList
Source§fn default() -> PaginatedSystemTaskList
fn default() -> PaginatedSystemTaskList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PaginatedSystemTaskList
impl<'de> Deserialize<'de> for PaginatedSystemTaskList
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 PaginatedSystemTaskList
impl PartialEq for PaginatedSystemTaskList
Source§impl Serialize for PaginatedSystemTaskList
impl Serialize for PaginatedSystemTaskList
impl StructuralPartialEq for PaginatedSystemTaskList
Auto Trait Implementations§
impl Freeze for PaginatedSystemTaskList
impl RefUnwindSafe for PaginatedSystemTaskList
impl Send for PaginatedSystemTaskList
impl Sync for PaginatedSystemTaskList
impl Unpin for PaginatedSystemTaskList
impl UnwindSafe for PaginatedSystemTaskList
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