pub struct PushPlan {
pub preview_action: String,
pub preview_details: Vec<String>,
pub report: ChangeReport,
pub summary: PushReport,
/* private fields */
}Expand description
What plan_push computed and apply_push performs.
The preview fields feed the caller’s guard banner; report is the change
ticket; summary is the JSON report.
Fields§
§preview_action: String§preview_details: Vec<String>§report: ChangeReport§summary: PushReportTrait Implementations§
Auto Trait Implementations§
impl Freeze for PushPlan
impl RefUnwindSafe for PushPlan
impl Send for PushPlan
impl Sync for PushPlan
impl Unpin for PushPlan
impl UnsafeUnpin for PushPlan
impl UnwindSafe for PushPlan
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