pub struct MemTrajectoryEntry {
pub intent: String,
pub outcome: String,
pub confidence: f64,
}Expand description
A trajectory entry projection used by context assembly.
Fields§
§intent: StringIntent description for the trajectory entry.
outcome: StringOutcome description.
confidence: f64Confidence score in [0, 1].
Trait Implementations§
Source§impl Clone for MemTrajectoryEntry
impl Clone for MemTrajectoryEntry
Source§fn clone(&self) -> MemTrajectoryEntry
fn clone(&self) -> MemTrajectoryEntry
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 MemTrajectoryEntry
impl RefUnwindSafe for MemTrajectoryEntry
impl Send for MemTrajectoryEntry
impl Sync for MemTrajectoryEntry
impl Unpin for MemTrajectoryEntry
impl UnsafeUnpin for MemTrajectoryEntry
impl UnwindSafe for MemTrajectoryEntry
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