pub struct JiraComment {
pub id: String,
pub author: String,
pub body_adf: Option<Value>,
pub created: String,
}Expand description
A JIRA issue comment.
Fields§
§id: StringComment ID.
Author display name.
body_adf: Option<Value>Comment body as raw ADF JSON.
created: StringISO 8601 creation timestamp.
Trait Implementations§
Source§impl Clone for JiraComment
impl Clone for JiraComment
Source§fn clone(&self) -> JiraComment
fn clone(&self) -> JiraComment
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 JiraComment
impl Debug for JiraComment
Auto Trait Implementations§
impl Freeze for JiraComment
impl RefUnwindSafe for JiraComment
impl Send for JiraComment
impl Sync for JiraComment
impl Unpin for JiraComment
impl UnsafeUnpin for JiraComment
impl UnwindSafe for JiraComment
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