pub enum PlanChange {
NoOp,
ChangesState,
}Expand description
Caller assessment of whether the planned request changes effective state.
Variants§
NoOp
The request would make no effective change and must not be authorized.
ChangesState
The caller confirmed an effective state change.
Trait Implementations§
Source§impl Clone for PlanChange
impl Clone for PlanChange
Source§fn clone(&self) -> PlanChange
fn clone(&self) -> PlanChange
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 moreimpl Copy for PlanChange
Source§impl Debug for PlanChange
impl Debug for PlanChange
impl Eq for PlanChange
Source§impl PartialEq for PlanChange
impl PartialEq for PlanChange
impl StructuralPartialEq for PlanChange
Auto Trait Implementations§
impl Freeze for PlanChange
impl RefUnwindSafe for PlanChange
impl Send for PlanChange
impl Sync for PlanChange
impl Unpin for PlanChange
impl UnsafeUnpin for PlanChange
impl UnwindSafe for PlanChange
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