pub struct GetAllWorkflowSchemesParams {
pub start_at: Option<i64>,
pub max_results: Option<i32>,
}
Expand description
struct for passing parameters to the method get_all_workflow_schemes
Fields§
§start_at: Option<i64>
The index of the first item to return in a page of results (page offset).
max_results: Option<i32>
The maximum number of items to return per page.
Trait Implementations§
Source§impl Clone for GetAllWorkflowSchemesParams
impl Clone for GetAllWorkflowSchemesParams
Source§fn clone(&self) -> GetAllWorkflowSchemesParams
fn clone(&self) -> GetAllWorkflowSchemesParams
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 GetAllWorkflowSchemesParams
impl RefUnwindSafe for GetAllWorkflowSchemesParams
impl Send for GetAllWorkflowSchemesParams
impl Sync for GetAllWorkflowSchemesParams
impl Unpin for GetAllWorkflowSchemesParams
impl UnwindSafe for GetAllWorkflowSchemesParams
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