pub struct ListJobsParameters {
pub cursor: Option<String>,
}Expand description
This is a model struct for ListJobsParameters (query parameters)
Fields§
§cursor: Option<String>The pagination cursor returned by the previous call to this endpoint. Provide this cursor to retrieve the next page of results for your original request.
Implementations§
Source§impl ListJobsParameters
impl ListJobsParameters
Sourcepub fn to_query_string(&self) -> String
pub fn to_query_string(&self) -> String
Converts the struct to a query string.
Trait Implementations§
Source§impl Clone for ListJobsParameters
impl Clone for ListJobsParameters
Source§fn clone(&self) -> ListJobsParameters
fn clone(&self) -> ListJobsParameters
Returns a copy 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 ListJobsParameters
impl Debug for ListJobsParameters
Source§impl Default for ListJobsParameters
impl Default for ListJobsParameters
Source§fn default() -> ListJobsParameters
fn default() -> ListJobsParameters
Returns the “default value” for a type. Read more
Source§impl Display for ListJobsParameters
impl Display for ListJobsParameters
Source§impl From<ListJobsParameters> for String
impl From<ListJobsParameters> for String
Source§fn from(list_jobs_parameters: ListJobsParameters) -> Self
fn from(list_jobs_parameters: ListJobsParameters) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ListJobsParameters
impl RefUnwindSafe for ListJobsParameters
impl Send for ListJobsParameters
impl Sync for ListJobsParameters
impl Unpin for ListJobsParameters
impl UnwindSafe for ListJobsParameters
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