pub struct JiraWorklogList {
pub worklogs: Vec<JiraWorklog>,
pub total: u32,
}Expand description
Result from listing JIRA worklogs.
Fields§
§worklogs: Vec<JiraWorklog>Worklog entries.
total: u32Total number of worklogs.
Trait Implementations§
Source§impl Clone for JiraWorklogList
impl Clone for JiraWorklogList
Source§fn clone(&self) -> JiraWorklogList
fn clone(&self) -> JiraWorklogList
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 JiraWorklogList
impl Debug for JiraWorklogList
Auto Trait Implementations§
impl Freeze for JiraWorklogList
impl RefUnwindSafe for JiraWorklogList
impl Send for JiraWorklogList
impl Sync for JiraWorklogList
impl Unpin for JiraWorklogList
impl UnsafeUnpin for JiraWorklogList
impl UnwindSafe for JiraWorklogList
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