pub enum JsonKind {
Null,
Bool,
Number,
String,
Array,
Object,
Unknown,
}Expand description
A conservative classification of JSON input.
Variants§
Trait Implementations§
impl Copy for JsonKind
impl Eq for JsonKind
impl StructuralPartialEq for JsonKind
Auto Trait Implementations§
impl Freeze for JsonKind
impl RefUnwindSafe for JsonKind
impl Send for JsonKind
impl Sync for JsonKind
impl Unpin for JsonKind
impl UnsafeUnpin for JsonKind
impl UnwindSafe for JsonKind
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