pub struct DecisionRecall {
pub commit_id: Uuid,
pub query: String,
pub decision_summary: String,
pub mode: String,
pub created_at: Timestamp,
}Expand description
Recall of a decision from past interactions.
Fields§
§commit_id: UuidCommit ID this decision came from
query: StringOriginal query
decision_summary: StringExtracted decision summary
mode: StringMode of the interaction
created_at: TimestampWhen the decision was made
Trait Implementations§
Source§impl Clone for DecisionRecall
impl Clone for DecisionRecall
Source§fn clone(&self) -> DecisionRecall
fn clone(&self) -> DecisionRecall
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 DecisionRecall
impl Debug for DecisionRecall
Source§impl<'de> Deserialize<'de> for DecisionRecall
impl<'de> Deserialize<'de> for DecisionRecall
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DecisionRecall
impl PartialEq for DecisionRecall
Source§impl Serialize for DecisionRecall
impl Serialize for DecisionRecall
impl StructuralPartialEq for DecisionRecall
Auto Trait Implementations§
impl Freeze for DecisionRecall
impl RefUnwindSafe for DecisionRecall
impl Send for DecisionRecall
impl Sync for DecisionRecall
impl Unpin for DecisionRecall
impl UnwindSafe for DecisionRecall
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