pub struct ThreadedCommentData {
pub id: String,
pub cell_ref: String,
pub text: String,
pub author: String,
pub person_id: String,
pub date_time: String,
pub parent_id: Option<String>,
pub done: bool,
}Expand description
Output data for a threaded comment.
Fields§
§id: StringUnique comment ID (GUID).
cell_ref: StringCell reference (e.g. “A1”).
text: StringComment text.
Author display name.
person_id: StringPerson ID (GUID).
date_time: StringISO 8601 timestamp.
parent_id: Option<String>Parent comment ID (for replies).
done: boolWhether the comment thread is marked as resolved.
Trait Implementations§
Source§impl Clone for ThreadedCommentData
impl Clone for ThreadedCommentData
Source§fn clone(&self) -> ThreadedCommentData
fn clone(&self) -> ThreadedCommentData
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 ThreadedCommentData
impl Debug for ThreadedCommentData
Source§impl PartialEq for ThreadedCommentData
impl PartialEq for ThreadedCommentData
impl StructuralPartialEq for ThreadedCommentData
Auto Trait Implementations§
impl Freeze for ThreadedCommentData
impl RefUnwindSafe for ThreadedCommentData
impl Send for ThreadedCommentData
impl Sync for ThreadedCommentData
impl Unpin for ThreadedCommentData
impl UnwindSafe for ThreadedCommentData
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