pub enum SystemAction {
SetValue {
configurator: String,
key: String,
desired: String,
current: String,
origin: String,
},
Skip {
configurator: String,
reason: String,
origin: String,
},
}Expand description
System configuration action.
Variants§
Trait Implementations§
Source§impl Debug for SystemAction
impl Debug for SystemAction
Auto Trait Implementations§
impl Freeze for SystemAction
impl RefUnwindSafe for SystemAction
impl Send for SystemAction
impl Sync for SystemAction
impl Unpin for SystemAction
impl UnsafeUnpin for SystemAction
impl UnwindSafe for SystemAction
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