#[repr(i32)]pub enum NullValue {
NullValue = 0,
}
Expand description
NullValue
is a singleton enumeration to represent the null value for the
Value
type union.
The JSON representation for NullValue
is JSON null
.
Variants§
NullValue = 0
Null value.
Implementations§
Trait Implementations§
Source§impl Ord for NullValue
impl Ord for NullValue
Source§impl PartialOrd for NullValue
impl PartialOrd for NullValue
impl Copy for NullValue
impl Eq for NullValue
impl StructuralPartialEq for NullValue
Auto Trait Implementations§
impl Freeze for NullValue
impl RefUnwindSafe for NullValue
impl Send for NullValue
impl Sync for NullValue
impl Unpin for NullValue
impl UnwindSafe for NullValue
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