#[non_exhaustive]pub enum ConfigValueMut<'a> {
Bool(&'a mut bool),
U8(&'a mut u8),
String(&'a mut StringView),
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Bool(&'a mut bool)
U8(&'a mut u8)
String(&'a mut StringView)
A string of any capacity, obtained from a heapless::String<N> with as_mut_view
Trait Implementations§
Source§impl<'a> Debug for ConfigValueMut<'a>
impl<'a> Debug for ConfigValueMut<'a>
Source§impl<'a> Display for ConfigValueMut<'a>
impl<'a> Display for ConfigValueMut<'a>
Auto Trait Implementations§
impl<'a> !UnwindSafe for ConfigValueMut<'a>
impl<'a> Freeze for ConfigValueMut<'a>
impl<'a> RefUnwindSafe for ConfigValueMut<'a>
impl<'a> Send for ConfigValueMut<'a>
impl<'a> Sync for ConfigValueMut<'a>
impl<'a> Unpin for ConfigValueMut<'a>
impl<'a> UnsafeUnpin for ConfigValueMut<'a>
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