pub struct QueuedExtraction {
pub id: String,
pub memory: Memory,
pub confidence: f32,
pub source_session_id: String,
pub queued_at: String,
}Expand description
A staged extraction awaiting operator review.
Fields§
§id: StringStable id within the queue (e.g. q_<ulid>).
memory: MemoryThe proposed memory (MemorySource::Mined).
confidence: f32Extraction confidence (0.0–1.0); determined Auto/PendingReview routing and gives the reviewer context. Not stored on the promoted Memory.
source_session_id: StringThe session the extraction was mined from (provenance for the reviewer).
queued_at: StringEpoch-secs string when the extraction was enqueued.
Trait Implementations§
Source§impl Clone for QueuedExtraction
impl Clone for QueuedExtraction
Source§fn clone(&self) -> QueuedExtraction
fn clone(&self) -> QueuedExtraction
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 QueuedExtraction
impl Debug for QueuedExtraction
Source§impl PartialEq for QueuedExtraction
impl PartialEq for QueuedExtraction
impl StructuralPartialEq for QueuedExtraction
Auto Trait Implementations§
impl Freeze for QueuedExtraction
impl RefUnwindSafe for QueuedExtraction
impl Send for QueuedExtraction
impl Sync for QueuedExtraction
impl Unpin for QueuedExtraction
impl UnsafeUnpin for QueuedExtraction
impl UnwindSafe for QueuedExtraction
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