pub enum YmlValue {
Null,
Bool(bool),
Number(f64),
String(String),
List(Vec<YmlValue>),
Map(Vec<(String, YmlValue)>),
}Variants§
Trait Implementations§
impl StructuralPartialEq for YmlValue
Auto Trait Implementations§
impl Freeze for YmlValue
impl RefUnwindSafe for YmlValue
impl Send for YmlValue
impl Sync for YmlValue
impl Unpin for YmlValue
impl UnsafeUnpin for YmlValue
impl UnwindSafe for YmlValue
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