pub struct GetProjectComponentsPaginatedParams {
pub project_id_or_key: String,
pub start_at: Option<i64>,
pub max_results: Option<i32>,
pub order_by: Option<String>,
pub query: Option<String>,
}Expand description
struct for passing parameters to the method get_project_components_paginated
Fields§
§project_id_or_key: StringThe project ID or project key (case sensitive).
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.
order_by: Option<String>Order the results by a field: * description Sorts by the component description. * issueCount Sorts by the count of issues associated with the component. * lead Sorts by the user key of the component’s project lead. * name Sorts by component name.
query: Option<String>Filter the results using a literal string. Components with a matching name or description are returned (case insensitive).
Trait Implementations§
Source§impl Clone for GetProjectComponentsPaginatedParams
impl Clone for GetProjectComponentsPaginatedParams
Source§fn clone(&self) -> GetProjectComponentsPaginatedParams
fn clone(&self) -> GetProjectComponentsPaginatedParams
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 Default for GetProjectComponentsPaginatedParams
impl Default for GetProjectComponentsPaginatedParams
Source§fn default() -> GetProjectComponentsPaginatedParams
fn default() -> GetProjectComponentsPaginatedParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetProjectComponentsPaginatedParams
impl RefUnwindSafe for GetProjectComponentsPaginatedParams
impl Send for GetProjectComponentsPaginatedParams
impl Sync for GetProjectComponentsPaginatedParams
impl Unpin for GetProjectComponentsPaginatedParams
impl UnwindSafe for GetProjectComponentsPaginatedParams
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