pub struct PlanStateArtifact {Show 13 fields
pub version: u32,
pub session_id: String,
pub updated_at: DateTime<Utc>,
pub status: Option<String>,
pub active_task_id: Option<String>,
pub active_step_id: Option<String>,
pub next_step_id: Option<String>,
pub active_section_id: Option<String>,
pub next_section_id: Option<String>,
pub last_completed_task_id: Option<String>,
pub last_completed_section_id: Option<String>,
pub round_hint: Option<u32>,
pub plan_hash: Option<String>,
}Expand description
Durable machine-readable state for a plan mode session.
Fields§
§version: u32§session_id: String§updated_at: DateTime<Utc>§status: Option<String>§active_task_id: Option<String>§active_step_id: Option<String>§next_step_id: Option<String>§active_section_id: Option<String>§next_section_id: Option<String>§last_completed_task_id: Option<String>§last_completed_section_id: Option<String>§round_hint: Option<u32>§plan_hash: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for PlanStateArtifact
impl Clone for PlanStateArtifact
Source§fn clone(&self) -> PlanStateArtifact
fn clone(&self) -> PlanStateArtifact
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 PlanStateArtifact
impl Debug for PlanStateArtifact
Source§impl<'de> Deserialize<'de> for PlanStateArtifact
impl<'de> Deserialize<'de> for PlanStateArtifact
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 PartialEq for PlanStateArtifact
impl PartialEq for PlanStateArtifact
Source§fn eq(&self, other: &PlanStateArtifact) -> bool
fn eq(&self, other: &PlanStateArtifact) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PlanStateArtifact
impl Serialize for PlanStateArtifact
impl StructuralPartialEq for PlanStateArtifact
Auto Trait Implementations§
impl Freeze for PlanStateArtifact
impl RefUnwindSafe for PlanStateArtifact
impl Send for PlanStateArtifact
impl Sync for PlanStateArtifact
impl Unpin for PlanStateArtifact
impl UnsafeUnpin for PlanStateArtifact
impl UnwindSafe for PlanStateArtifact
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