pub struct PlanInfo {
pub state: PlanState,
pub plan_content: String,
pub files_to_modify: Vec<String>,
pub created_at: Option<Instant>,
}Expand description
Plan info
Fields§
§state: PlanState§plan_content: String§files_to_modify: Vec<String>§created_at: Option<Instant>Trait Implementations§
Auto Trait Implementations§
impl Freeze for PlanInfo
impl RefUnwindSafe for PlanInfo
impl Send for PlanInfo
impl Sync for PlanInfo
impl Unpin for PlanInfo
impl UnsafeUnpin for PlanInfo
impl UnwindSafe for PlanInfo
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