pub enum MilestoneId {
IntelligenceReady,
FirstMemory,
FirstRecall,
FirstPage,
GraphAlive,
SecondAgent,
}Expand description
Canonical identifier for each onboarding milestone. The string form
(produced by as_str, FromStr, and serde’s kebab-case rename) is
the single source of truth for (a) the DB primary key, (b) the JSON
wire format, (c) MilestoneRecord.id. All four forms must stay in sync –
the round-trip test in this module enforces that.
Variants§
IntelligenceReady
FirstMemory
FirstRecall
FirstPage
Wire format preserved as “first-concept” until 0c.2/0c.3 DB/API rename pass.
GraphAlive
SecondAgent
Implementations§
Trait Implementations§
Source§impl Clone for MilestoneId
impl Clone for MilestoneId
Source§fn clone(&self) -> MilestoneId
fn clone(&self) -> MilestoneId
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MilestoneId
impl Debug for MilestoneId
Source§impl<'de> Deserialize<'de> for MilestoneId
impl<'de> Deserialize<'de> for MilestoneId
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
Source§impl FromStr for MilestoneId
impl FromStr for MilestoneId
Source§impl Hash for MilestoneId
impl Hash for MilestoneId
Source§impl PartialEq for MilestoneId
impl PartialEq for MilestoneId
Source§fn eq(&self, other: &MilestoneId) -> bool
fn eq(&self, other: &MilestoneId) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MilestoneId
impl Serialize for MilestoneId
impl Copy for MilestoneId
impl Eq for MilestoneId
impl StructuralPartialEq for MilestoneId
Auto Trait Implementations§
impl Freeze for MilestoneId
impl RefUnwindSafe for MilestoneId
impl Send for MilestoneId
impl Sync for MilestoneId
impl Unpin for MilestoneId
impl UnsafeUnpin for MilestoneId
impl UnwindSafe for MilestoneId
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