pub struct TaskAssignments {
pub page: i64,
pub total_entries: i64,
pub links: PaginationLinks,
pub per_page: i64,
pub total_pages: i64,
pub task_assignments: Vec<TaskAssignment>,
pub next_page: Option<i64>,
pub previous_page: Option<i64>,
}Fields§
§page: i64§total_entries: i64§links: PaginationLinks§per_page: i64§total_pages: i64§task_assignments: Vec<TaskAssignment>§next_page: Option<i64>§previous_page: Option<i64>Trait Implementations§
Source§impl Debug for TaskAssignments
impl Debug for TaskAssignments
Source§impl<'de> Deserialize<'de> for TaskAssignments
impl<'de> Deserialize<'de> for TaskAssignments
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 Display for TaskAssignments
impl Display for TaskAssignments
Auto Trait Implementations§
impl Freeze for TaskAssignments
impl RefUnwindSafe for TaskAssignments
impl Send for TaskAssignments
impl Sync for TaskAssignments
impl Unpin for TaskAssignments
impl UnwindSafe for TaskAssignments
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