pub struct GetWorklogsForIdsParams {
pub worklog_ids_request_bean: WorklogIdsRequestBean,
pub expand: Option<String>,
}
Expand description
struct for passing parameters to the method get_worklogs_for_ids
Fields§
§worklog_ids_request_bean: WorklogIdsRequestBean
A JSON object containing a list of worklog IDs.
expand: Option<String>
Use expand to include additional information about worklogs in the response. This parameter accepts properties
that returns the properties of each worklog.
Trait Implementations§
Source§impl Clone for GetWorklogsForIdsParams
impl Clone for GetWorklogsForIdsParams
Source§fn clone(&self) -> GetWorklogsForIdsParams
fn clone(&self) -> GetWorklogsForIdsParams
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 GetWorklogsForIdsParams
impl RefUnwindSafe for GetWorklogsForIdsParams
impl Send for GetWorklogsForIdsParams
impl Sync for GetWorklogsForIdsParams
impl Unpin for GetWorklogsForIdsParams
impl UnwindSafe for GetWorklogsForIdsParams
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