pub enum BaseValue {
String(String),
Boolean(bool),
Float(f64),
}
Expand description
The base store for Value
. All values must support storing and retrieving data as one of these types.
Variants§
Trait Implementations§
impl StructuralPartialEq for BaseValue
Auto Trait Implementations§
impl Freeze for BaseValue
impl RefUnwindSafe for BaseValue
impl Send for BaseValue
impl Sync for BaseValue
impl Unpin for BaseValue
impl UnwindSafe for BaseValue
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