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