pub enum Action {
Added,
Modified,
Existed,
}Expand description
Possible outcomes for add_or_modify operations.
Variants§
Added
The parameter did not exist before and was added
Modified
The parameter existed before, but contained a different value. The value was updated to the newly-requested value.
Existed
The parameter existed before, and contained the same value as the newly-requested value. No modification was made.
Trait Implementations§
impl Copy for Action
impl Eq for Action
impl StructuralPartialEq for Action
Auto Trait Implementations§
impl Freeze for Action
impl RefUnwindSafe for Action
impl Send for Action
impl Sync for Action
impl Unpin for Action
impl UnwindSafe for Action
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