#[non_exhaustive]pub enum ReportOp {
Replace,
Append,
}Expand description
How an AttributeReportItem merges into accumulated state.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Replace
Replace the attribute’s value (path carried no ListIndex).
Append
Append value to the attribute’s list (path carried ListIndex = null).
Trait Implementations§
impl Copy for ReportOp
impl Eq for ReportOp
impl StructuralPartialEq for ReportOp
Auto Trait Implementations§
impl Freeze for ReportOp
impl RefUnwindSafe for ReportOp
impl Send for ReportOp
impl Sync for ReportOp
impl Unpin for ReportOp
impl UnsafeUnpin for ReportOp
impl UnwindSafe for ReportOp
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