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