pub struct JiraWorklog {
pub id: String,
pub author: String,
pub time_spent: String,
pub time_spent_seconds: u64,
pub started: String,
pub comment: Option<String>,
}Expand description
A JIRA issue worklog entry.
Fields§
§id: StringWorklog ID.
Author display name.
time_spent: StringTime spent in human-readable format (e.g., “2h 30m”).
time_spent_seconds: u64Time spent in seconds.
started: StringISO 8601 timestamp when the work was started.
comment: Option<String>Comment text (plain text, extracted from ADF).
Trait Implementations§
Source§impl Clone for JiraWorklog
impl Clone for JiraWorklog
Source§fn clone(&self) -> JiraWorklog
fn clone(&self) -> JiraWorklog
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 JiraWorklog
impl Debug for JiraWorklog
Auto Trait Implementations§
impl Freeze for JiraWorklog
impl RefUnwindSafe for JiraWorklog
impl Send for JiraWorklog
impl Sync for JiraWorklog
impl Unpin for JiraWorklog
impl UnsafeUnpin for JiraWorklog
impl UnwindSafe for JiraWorklog
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