pub struct ConfigFieldState {
pub name: &'static str,
pub description: &'static str,
pub default_value: Option<String>,
pub current_value: String,
}Fields§
§name: &'static str§description: &'static str§default_value: Option<String>§current_value: StringAuto Trait Implementations§
impl Freeze for ConfigFieldState
impl RefUnwindSafe for ConfigFieldState
impl Send for ConfigFieldState
impl Sync for ConfigFieldState
impl Unpin for ConfigFieldState
impl UnwindSafe for ConfigFieldState
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