pub struct PlanMetadata {
pub plan_id: String,
pub created_at: SystemTime,
pub workflow_name: String,
pub workflow_version: String,
pub total_nodes: usize,
pub total_phases: usize,
}
Expand description
计划元数据
Fields§
§plan_id: String
计划ID
created_at: SystemTime
创建时间
workflow_name: String
工作流名称
workflow_version: String
工作流版本
total_nodes: usize
总节点数
total_phases: usize
总阶段数
Trait Implementations§
Source§impl Clone for PlanMetadata
impl Clone for PlanMetadata
Source§fn clone(&self) -> PlanMetadata
fn clone(&self) -> PlanMetadata
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for PlanMetadata
impl RefUnwindSafe for PlanMetadata
impl Send for PlanMetadata
impl Sync for PlanMetadata
impl Unpin for PlanMetadata
impl UnwindSafe for PlanMetadata
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