pub struct LeapRun {
pub id: String,
pub domain: String,
pub reflexions_processed: u32,
pub rules_before: u32,
pub rules_after: u32,
pub created_at: String,
}Expand description
Audit record for one abstraction/consolidation pass. Appended to
runs.jsonl; together with the store’s git history this is the full
lineage from any rule back to the reflections that argued for it.
Fields§
§id: String§domain: String§reflexions_processed: u32§rules_before: u32§rules_after: u32§created_at: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for LeapRun
impl<'de> Deserialize<'de> for LeapRun
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 LeapRun
impl RefUnwindSafe for LeapRun
impl Send for LeapRun
impl Sync for LeapRun
impl Unpin for LeapRun
impl UnsafeUnpin for LeapRun
impl UnwindSafe for LeapRun
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