pub struct AttributedComment {
pub comment_id: String,
pub author: String,
pub initials: Option<String>,
pub date: Option<String>,
pub parent_comment_id: Option<String>,
pub resolved: bool,
pub content: ReviewDetail<CommentContent>,
}Fields§
§comment_id: String§initials: Option<String>§date: Option<String>§parent_comment_id: Option<String>§resolved: bool§content: ReviewDetail<CommentContent>Trait Implementations§
Source§impl Clone for AttributedComment
impl Clone for AttributedComment
Source§fn clone(&self) -> AttributedComment
fn clone(&self) -> AttributedComment
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AttributedComment
impl Debug for AttributedComment
impl Eq for AttributedComment
Source§impl PartialEq for AttributedComment
impl PartialEq for AttributedComment
impl StructuralPartialEq for AttributedComment
Auto Trait Implementations§
impl Freeze for AttributedComment
impl RefUnwindSafe for AttributedComment
impl Send for AttributedComment
impl Sync for AttributedComment
impl Unpin for AttributedComment
impl UnsafeUnpin for AttributedComment
impl UnwindSafe for AttributedComment
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