pub struct ConfigField {
pub name: &'static str,
pub requires_touch_confirmation: bool,
pub requires_reboot: bool,
pub destructive: bool,
pub ty: FieldType,
}Fields§
§name: &'static str§requires_touch_confirmation: boolChanging the config field requires a touch
requires_reboot: boolChanging the config field requires a power cycle
destructive: boolChanging the config field deletes data
ty: FieldTypeThe type of data stored in this field
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ConfigField
impl RefUnwindSafe for ConfigField
impl Send for ConfigField
impl Sync for ConfigField
impl Unpin for ConfigField
impl UnsafeUnpin for ConfigField
impl UnwindSafe for ConfigField
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