pub struct RecordedDecision {
pub context_hash: String,
pub action: String,
pub reasoning: String,
pub confidence: f64,
pub timestamp: DateTime<Utc>,
pub model_version: String,
}Expand description
A recorded decision for replay determinism
Fields§
§context_hash: StringHash of the context that led to this decision
action: StringThe decision that was made
reasoning: StringReasoning provided by Claude
confidence: f64Confidence level (0.0 to 1.0)
timestamp: DateTime<Utc>When the decision was made
model_version: StringVersion of the model used for this decision
Trait Implementations§
Source§impl Clone for RecordedDecision
impl Clone for RecordedDecision
Source§fn clone(&self) -> RecordedDecision
fn clone(&self) -> RecordedDecision
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 RecordedDecision
impl Debug for RecordedDecision
Source§impl<'de> Deserialize<'de> for RecordedDecision
impl<'de> Deserialize<'de> for RecordedDecision
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
Auto Trait Implementations§
impl Freeze for RecordedDecision
impl RefUnwindSafe for RecordedDecision
impl Send for RecordedDecision
impl Sync for RecordedDecision
impl Unpin for RecordedDecision
impl UnwindSafe for RecordedDecision
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