pub struct GetChangeLogsParams {
pub issue_id_or_key: String,
pub start_at: Option<i32>,
pub max_results: Option<i32>,
}
Expand description
struct for passing parameters to the method get_change_logs
Fields§
§issue_id_or_key: String
The ID or key of the issue.
start_at: Option<i32>
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 GetChangeLogsParams
impl Clone for GetChangeLogsParams
Source§fn clone(&self) -> GetChangeLogsParams
fn clone(&self) -> GetChangeLogsParams
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 Debug for GetChangeLogsParams
impl Debug for GetChangeLogsParams
Source§impl Default for GetChangeLogsParams
impl Default for GetChangeLogsParams
Source§fn default() -> GetChangeLogsParams
fn default() -> GetChangeLogsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetChangeLogsParams
impl RefUnwindSafe for GetChangeLogsParams
impl Send for GetChangeLogsParams
impl Sync for GetChangeLogsParams
impl Unpin for GetChangeLogsParams
impl UnwindSafe for GetChangeLogsParams
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