pub enum DeJsonTok {
}Expand description
A JSON parsed token.
Variants
Str
Char(char)
U64(u64)
I64(i64)
F64(f64)
Bool(bool)
BareIdent
Null
Colon
CurlyOpen
CurlyClose
BlockOpen
BlockClose
Comma
Bof
Eof
Trait Implementations
impl StructuralPartialEq for DeJsonTok
Auto Trait Implementations
impl RefUnwindSafe for DeJsonTok
impl Send for DeJsonTok
impl Sync for DeJsonTok
impl Unpin for DeJsonTok
impl UnwindSafe for DeJsonTok
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more