pub struct SemanticPlan {
pub id: Uuid,
pub created_at: DateTime<Utc>,
pub operation: PlanOperation,
pub description: String,
pub actions: Vec<PlanAction>,
pub status: PlanStatus,
pub impact: PlanImpact,
}Expand description
A proposed semantic operation plan.
Fields§
§id: UuidUnique plan identifier
created_at: DateTime<Utc>When the plan was created
operation: PlanOperationType of operation
description: StringHuman-readable description
actions: Vec<PlanAction>Proposed file operations
status: PlanStatusStatus of the plan
impact: PlanImpactEstimated impact (files affected)
Trait Implementations§
Source§impl Clone for SemanticPlan
impl Clone for SemanticPlan
Source§fn clone(&self) -> SemanticPlan
fn clone(&self) -> SemanticPlan
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 moreSource§impl Debug for SemanticPlan
impl Debug for SemanticPlan
Source§impl<'de> Deserialize<'de> for SemanticPlan
impl<'de> Deserialize<'de> for SemanticPlan
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 SemanticPlan
impl RefUnwindSafe for SemanticPlan
impl Send for SemanticPlan
impl Sync for SemanticPlan
impl Unpin for SemanticPlan
impl UnwindSafe for SemanticPlan
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