pub struct ConfluenceComment {
pub id: String,
pub author: String,
pub body_adf: Option<Value>,
pub created: String,
}Expand description
A comment on a Confluence page.
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 ConfluenceComment
impl Clone for ConfluenceComment
Source§fn clone(&self) -> ConfluenceComment
fn clone(&self) -> ConfluenceComment
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 ConfluenceComment
impl Debug for ConfluenceComment
Auto Trait Implementations§
impl Freeze for ConfluenceComment
impl RefUnwindSafe for ConfluenceComment
impl Send for ConfluenceComment
impl Sync for ConfluenceComment
impl Unpin for ConfluenceComment
impl UnsafeUnpin for ConfluenceComment
impl UnwindSafe for ConfluenceComment
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