pub struct PlanState {
pub plan_name: String,
pub plan_file: String,
pub plan_status: PlanStatus,
pub started_at: Option<String>,
pub completed_at: Option<String>,
pub aborted_at: Option<String>,
pub total_cost_usd: f64,
pub phases: Vec<PhaseState>,
pub version: u32,
}Fields§
§plan_name: String§plan_file: String§plan_status: PlanStatus§started_at: Option<String>§completed_at: Option<String>§aborted_at: Option<String>§total_cost_usd: f64§phases: Vec<PhaseState>§version: u32Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PlanState
impl<'de> Deserialize<'de> for PlanState
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 PlanState
impl RefUnwindSafe for PlanState
impl Send for PlanState
impl Sync for PlanState
impl Unpin for PlanState
impl UnsafeUnpin for PlanState
impl UnwindSafe for PlanState
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