pub struct CodeProphecy {
pub subject: ProphecySubject,
pub horizon: ProphecyHorizon,
pub predictions: Vec<EnhancedPrediction>,
pub confidence: f64,
pub evidence: Vec<ProphecyEvidence>,
}Expand description
A prophecy about code evolution.
Fields§
§subject: ProphecySubjectWhat we’re prophesying about.
horizon: ProphecyHorizonTime horizon.
predictions: Vec<EnhancedPrediction>Predicted outcomes.
confidence: f64Confidence in prophecy.
evidence: Vec<ProphecyEvidence>Evidence supporting prophecy.
Trait Implementations§
Source§impl Clone for CodeProphecy
impl Clone for CodeProphecy
Source§fn clone(&self) -> CodeProphecy
fn clone(&self) -> CodeProphecy
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 CodeProphecy
impl Debug for CodeProphecy
Source§impl<'de> Deserialize<'de> for CodeProphecy
impl<'de> Deserialize<'de> for CodeProphecy
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 CodeProphecy
impl RefUnwindSafe for CodeProphecy
impl Send for CodeProphecy
impl Sync for CodeProphecy
impl Unpin for CodeProphecy
impl UnsafeUnpin for CodeProphecy
impl UnwindSafe for CodeProphecy
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