pub struct GetIssueTypeScreenSchemeProjectAssociationsParams {
pub project_id: Vec<i64>,
pub start_at: Option<i64>,
pub max_results: Option<i32>,
}
Expand description
struct for passing parameters to the method get_issue_type_screen_scheme_project_associations
Fields§
§project_id: Vec<i64>
The list of project IDs. To include multiple projects, separate IDs with ampersand: projectId=10000&projectId=10001
.
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 GetIssueTypeScreenSchemeProjectAssociationsParams
impl Clone for GetIssueTypeScreenSchemeProjectAssociationsParams
Source§fn clone(&self) -> GetIssueTypeScreenSchemeProjectAssociationsParams
fn clone(&self) -> GetIssueTypeScreenSchemeProjectAssociationsParams
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 GetIssueTypeScreenSchemeProjectAssociationsParams
impl RefUnwindSafe for GetIssueTypeScreenSchemeProjectAssociationsParams
impl Send for GetIssueTypeScreenSchemeProjectAssociationsParams
impl Sync for GetIssueTypeScreenSchemeProjectAssociationsParams
impl Unpin for GetIssueTypeScreenSchemeProjectAssociationsParams
impl UnwindSafe for GetIssueTypeScreenSchemeProjectAssociationsParams
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