pub struct DeleteOutcome {
pub applied: bool,
pub deleted: Vec<Value>,
pub failed: Vec<Value>,
pub total: usize,
}Expand description
The report a delete apply renders. Shared by the rules and exceptions
verticals: each reports the same applied/deleted/failed/total shape, only
the per-object entries differ (rule_id versus list_id).
Fields§
§applied: bool§deleted: Vec<Value>§failed: Vec<Value>§total: usizeTrait Implementations§
Source§impl Clone for DeleteOutcome
impl Clone for DeleteOutcome
Source§fn clone(&self) -> DeleteOutcome
fn clone(&self) -> DeleteOutcome
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 DeleteOutcome
impl Debug for DeleteOutcome
Source§impl PartialEq for DeleteOutcome
impl PartialEq for DeleteOutcome
Source§impl Serialize for DeleteOutcome
impl Serialize for DeleteOutcome
impl StructuralPartialEq for DeleteOutcome
Auto Trait Implementations§
impl Freeze for DeleteOutcome
impl RefUnwindSafe for DeleteOutcome
impl Send for DeleteOutcome
impl Sync for DeleteOutcome
impl Unpin for DeleteOutcome
impl UnsafeUnpin for DeleteOutcome
impl UnwindSafe for DeleteOutcome
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