pub struct StatusPlan {
pub target: CaseStatus,
pub updates: Vec<(String, String, CaseStatus)>,
pub resolved: usize,
pub preview_action: String,
pub preview_details: Vec<String>,
}Fields§
§target: CaseStatus§updates: Vec<(String, String, CaseStatus)>Only the cases actually transitioning: (id, version, target).
resolved: usizeThe resolved, deduplicated case count the preview names — what a dry-run stub must report, not the raw argv count.
preview_action: String§preview_details: Vec<String>Trait Implementations§
Source§impl Clone for StatusPlan
impl Clone for StatusPlan
Source§fn clone(&self) -> StatusPlan
fn clone(&self) -> StatusPlan
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StatusPlan
impl Debug for StatusPlan
Source§impl PartialEq for StatusPlan
impl PartialEq for StatusPlan
impl StructuralPartialEq for StatusPlan
Auto Trait Implementations§
impl Freeze for StatusPlan
impl RefUnwindSafe for StatusPlan
impl Send for StatusPlan
impl Sync for StatusPlan
impl Unpin for StatusPlan
impl UnsafeUnpin for StatusPlan
impl UnwindSafe for StatusPlan
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