pub enum RootJSONValue<'a> {
    String(&'a str),
    Number(&'a str),
    True,
    False,
    Null,
}Variants§
Trait Implementations§
source§impl<'a> Debug for RootJSONValue<'a>
 
impl<'a> Debug for RootJSONValue<'a>
source§impl<'a> PartialEq for RootJSONValue<'a>
 
impl<'a> PartialEq for RootJSONValue<'a>
source§fn eq(&self, other: &RootJSONValue<'a>) -> bool
 
fn eq(&self, other: &RootJSONValue<'a>) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl<'a> Eq for RootJSONValue<'a>
impl<'a> StructuralEq for RootJSONValue<'a>
impl<'a> StructuralPartialEq for RootJSONValue<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for RootJSONValue<'a>
impl<'a> Send for RootJSONValue<'a>
impl<'a> Sync for RootJSONValue<'a>
impl<'a> Unpin for RootJSONValue<'a>
impl<'a> UnwindSafe for RootJSONValue<'a>
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