pub enum Change {
Delete,
Subsume,
}Expand description
Change a function entry.
Variants§
Delete
delete this entry from a function.
Be wary! Only delete entries that are guaranteed to be not useful.
Subsume
subsume this entry so that it cannot be queried or extracted, but still can be checked.
Note that this is currently forbidden for functions with custom merges.
Trait Implementations§
impl Copy for Change
impl Eq for Change
impl StructuralPartialEq for Change
Auto Trait Implementations§
impl Freeze for Change
impl RefUnwindSafe for Change
impl Send for Change
impl Sync for Change
impl Unpin for Change
impl UnwindSafe for Change
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