pub enum YamlValue {
Array(YamlArray),
Boolean(bool),
String(String),
Map(YamlMap),
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for YamlValue
impl RefUnwindSafe for YamlValue
impl Send for YamlValue
impl Sync for YamlValue
impl Unpin for YamlValue
impl UnwindSafe for YamlValue
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