pub struct JobListPage {
pub job: Option<Vec<JobListEntry>>,
pub next_page_no: Option<Option<i32>>,
pub next_page_api_url: Option<Option<String>>,
pub previous_page_no: Option<Option<i32>>,
pub previous_page_api_url: Option<Option<String>>,
}Fields§
§job: Option<Vec<JobListEntry>>§next_page_no: Option<Option<i32>>§next_page_api_url: Option<Option<String>>§previous_page_no: Option<Option<i32>>§previous_page_api_url: Option<Option<String>>Implementations§
Source§impl JobListPage
impl JobListPage
pub fn new() -> JobListPage
Trait Implementations§
Source§impl Clone for JobListPage
impl Clone for JobListPage
Source§fn clone(&self) -> JobListPage
fn clone(&self) -> JobListPage
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 JobListPage
impl Debug for JobListPage
Source§impl Default for JobListPage
impl Default for JobListPage
Source§fn default() -> JobListPage
fn default() -> JobListPage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JobListPage
impl<'de> Deserialize<'de> for JobListPage
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 JobListPage
impl PartialEq for JobListPage
Source§impl Serialize for JobListPage
impl Serialize for JobListPage
impl StructuralPartialEq for JobListPage
Auto Trait Implementations§
impl Freeze for JobListPage
impl RefUnwindSafe for JobListPage
impl Send for JobListPage
impl Sync for JobListPage
impl Unpin for JobListPage
impl UnwindSafe for JobListPage
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