pub struct CommentTrack {
pub entity_type: String,
pub entity_id: String,
pub comment: String,
}Expand description
Structured metadata attached to each scope node in the comment propagation chain.
Fields§
§entity_type: StringEntity type name (e.g. “Task”)
entity_id: StringEntity primary key (e.g. “23”), may be “(pending)” before INSERT
comment: StringBusiness intent annotation (e.g. “Create lift #3”)
Trait Implementations§
Source§impl Clone for CommentTrack
impl Clone for CommentTrack
Source§fn clone(&self) -> CommentTrack
fn clone(&self) -> CommentTrack
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 moreAuto Trait Implementations§
impl Freeze for CommentTrack
impl RefUnwindSafe for CommentTrack
impl Send for CommentTrack
impl Sync for CommentTrack
impl Unpin for CommentTrack
impl UnsafeUnpin for CommentTrack
impl UnwindSafe for CommentTrack
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