pub enum NullStyle {
Empty,
Explicit,
}Expand description
Whether a null-like value was explicit or represented by an empty YAML mapping value.
Variants§
Empty
A key was authored without a value.
Explicit
A YAML null scalar such as null or ~ was authored.
Trait Implementations§
impl Copy for NullStyle
impl Eq for NullStyle
impl StructuralPartialEq for NullStyle
Auto Trait Implementations§
impl Freeze for NullStyle
impl RefUnwindSafe for NullStyle
impl Send for NullStyle
impl Sync for NullStyle
impl Unpin for NullStyle
impl UnsafeUnpin for NullStyle
impl UnwindSafe for NullStyle
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