pub struct CaseEditReport {
pub applied: bool,
pub total: u64,
pub updated: u64,
pub failed: u64,
pub failures: Vec<String>,
}Fields§
§applied: bool§total: u64§updated: u64§failed: u64render::exit_code_for_value keys on this field: a positive count
exits 1. Field order is the rendered JSON key order (preserve_order).
failures: Vec<String>One entry per failed unit of work (currently only apply_attach’s
per-rule-group comment POSTs), naming what failed and why. Empty for
every other mutation’s report. Appended after failed so existing
consumers of the field order are unaffected.
Trait Implementations§
Source§impl Clone for CaseEditReport
impl Clone for CaseEditReport
Source§fn clone(&self) -> CaseEditReport
fn clone(&self) -> CaseEditReport
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 CaseEditReport
impl Debug for CaseEditReport
Source§impl PartialEq for CaseEditReport
impl PartialEq for CaseEditReport
Source§impl Serialize for CaseEditReport
impl Serialize for CaseEditReport
impl StructuralPartialEq for CaseEditReport
Auto Trait Implementations§
impl Freeze for CaseEditReport
impl RefUnwindSafe for CaseEditReport
impl Send for CaseEditReport
impl Sync for CaseEditReport
impl Unpin for CaseEditReport
impl UnsafeUnpin for CaseEditReport
impl UnwindSafe for CaseEditReport
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