pub struct Idea {
pub id: usize,
pub content: String,
pub dimension: DivergentDimension,
pub parent_id: Option<usize>,
pub cycle: usize,
pub scores: Vec<CriterionScore>,
pub priority: f32,
pub survived: bool,
}Expand description
A single idea generated during divergent thinking
Fields§
§id: usizeUnique identifier
content: StringThe idea content
dimension: DivergentDimensionWhich dimension generated this
parent_id: Option<usize>Parent idea (if evolved from another)
cycle: usizeGeneration cycle (0 = first divergent phase)
scores: Vec<CriterionScore>Convergent evaluation scores
priority: f32Overall priority score after convergent phase
survived: boolWhether this survived to the final result
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Idea
impl<'de> Deserialize<'de> for Idea
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 Idea
impl RefUnwindSafe for Idea
impl Send for Idea
impl Sync for Idea
impl Unpin for Idea
impl UnwindSafe for Idea
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more