pub struct GetJobsParams {
pub from_time: Option<i32>,
pub to_time: Option<i32>,
}
Expand description
struct for passing parameters to the method [get_jobs
]
Fields§
§from_time: Option<i32>
Start of time range in ms since 1970
to_time: Option<i32>
End of time range in ms since 1970
Implementations§
Source§impl GetJobsParams
impl GetJobsParams
Sourcepub fn builder() -> GetJobsParamsBuilder
pub fn builder() -> GetJobsParamsBuilder
Create an instance of GetJobsParams
using the builder syntax
Trait Implementations§
Source§impl Clone for GetJobsParams
impl Clone for GetJobsParams
Source§fn clone(&self) -> GetJobsParams
fn clone(&self) -> GetJobsParams
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 moreAuto Trait Implementations§
impl Freeze for GetJobsParams
impl RefUnwindSafe for GetJobsParams
impl Send for GetJobsParams
impl Sync for GetJobsParams
impl Unpin for GetJobsParams
impl UnwindSafe for GetJobsParams
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