pub enum TotValue {
Unit,
Boolean(bool),
String(String),
Number(f64),
List(Vec<TotValue>),
Dict(HashMap<String, TotValue>),
}Variants§
Trait Implementations§
impl StructuralPartialEq for TotValue
Auto Trait Implementations§
impl Freeze for TotValue
impl RefUnwindSafe for TotValue
impl Send for TotValue
impl Sync for TotValue
impl Unpin for TotValue
impl UnwindSafe for TotValue
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