pub struct RelatedTask {
pub task_id: String,
pub status: String,
pub score: f64,
}Expand description
Score-weighted relationship between a fresh prompt’s artifacts and every prior task’s artifacts. Higher score = stronger continuation signal. Threshold tuning is the caller’s job; v0.6.0 auto-link keeps anything with score > 0.0.
Fields§
§task_id: String§status: String§score: f64Trait Implementations§
Source§impl Clone for RelatedTask
impl Clone for RelatedTask
Source§fn clone(&self) -> RelatedTask
fn clone(&self) -> RelatedTask
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 RelatedTask
impl RefUnwindSafe for RelatedTask
impl Send for RelatedTask
impl Sync for RelatedTask
impl Unpin for RelatedTask
impl UnsafeUnpin for RelatedTask
impl UnwindSafe for RelatedTask
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