pub struct GetCommentsParams {
pub issue_id_or_key: String,
pub start_at: Option<i64>,
pub max_results: Option<i32>,
pub order_by: Option<String>,
pub expand: Option<String>,
}Expand description
struct for passing parameters to the method get_comments
Fields§
§issue_id_or_key: StringThe ID or key of the issue.
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. Accepts created to sort comments by their created date.
expand: Option<String>Use expand to include additional information about comments in the response. This parameter accepts renderedBody, which returns the comment body rendered in HTML.
Trait Implementations§
Source§impl Clone for GetCommentsParams
impl Clone for GetCommentsParams
Source§fn clone(&self) -> GetCommentsParams
fn clone(&self) -> GetCommentsParams
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 GetCommentsParams
impl Debug for GetCommentsParams
Source§impl Default for GetCommentsParams
impl Default for GetCommentsParams
Source§fn default() -> GetCommentsParams
fn default() -> GetCommentsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetCommentsParams
impl RefUnwindSafe for GetCommentsParams
impl Send for GetCommentsParams
impl Sync for GetCommentsParams
impl Unpin for GetCommentsParams
impl UnwindSafe for GetCommentsParams
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