pub enum EditValue {
String(String),
Integer(i64),
Boolean(bool),
StringList(Vec<String>),
}Expand description
A value in an UpdateField edit. Kept intentionally small — this is
the union of types our TOML config actually uses.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EditValue
impl RefUnwindSafe for EditValue
impl Send for EditValue
impl Sync for EditValue
impl Unpin for EditValue
impl UnsafeUnpin for EditValue
impl UnwindSafe for EditValue
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