pub struct Goal {Show 27 fields
pub id: GoalId,
pub title: String,
pub description: String,
pub soul: GoalSoul,
pub status: GoalStatus,
pub created_at: Timestamp,
pub activated_at: Option<Timestamp>,
pub completed_at: Option<Timestamp>,
pub deadline: Option<Timestamp>,
pub parent: Option<GoalId>,
pub children: Vec<GoalId>,
pub dependencies: Vec<GoalId>,
pub dependents: Vec<GoalId>,
pub relationships: Vec<GoalRelationship>,
pub priority: Priority,
pub progress: Progress,
pub feelings: GoalFeelings,
pub physics: GoalPhysics,
pub blockers: Vec<Blocker>,
pub decisions: Vec<DecisionId>,
pub commitments: Vec<CommitmentId>,
pub dreams: Vec<DreamId>,
pub tags: Vec<String>,
pub metadata: HashMap<String, Value>,
pub provenance: GoalProvenance,
pub metamorphosis: Option<GoalMetamorphosis>,
pub previous_life: Option<PreviousLife>,
}Fields§
§id: GoalId§title: String§description: String§soul: GoalSoul§status: GoalStatus§created_at: Timestamp§activated_at: Option<Timestamp>§completed_at: Option<Timestamp>§deadline: Option<Timestamp>§parent: Option<GoalId>§children: Vec<GoalId>§dependencies: Vec<GoalId>§dependents: Vec<GoalId>§relationships: Vec<GoalRelationship>§priority: Priority§progress: Progress§feelings: GoalFeelings§physics: GoalPhysics§blockers: Vec<Blocker>§decisions: Vec<DecisionId>§commitments: Vec<CommitmentId>§dreams: Vec<DreamId>§metadata: HashMap<String, Value>§provenance: GoalProvenance§metamorphosis: Option<GoalMetamorphosis>§previous_life: Option<PreviousLife>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Goal
impl<'de> Deserialize<'de> for Goal
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 Goal
impl RefUnwindSafe for Goal
impl Send for Goal
impl Sync for Goal
impl Unpin for Goal
impl UnsafeUnpin for Goal
impl UnwindSafe for Goal
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