pub enum JsonSyntaxTreeEnum {
JsonObject(JsonObject),
JsonArray(JsonArray),
JsonBoolean(JsonBoolean),
JsonNull(JsonNull),
JsonString(JsonString),
JsonNumeric(JsonNumeric),
}Variants§
JsonObject(JsonObject)
JsonArray(JsonArray)
JsonBoolean(JsonBoolean)
JsonNull(JsonNull)
JsonString(JsonString)
JsonNumeric(JsonNumeric)
Auto Trait Implementations§
impl Freeze for JsonSyntaxTreeEnum
impl !RefUnwindSafe for JsonSyntaxTreeEnum
impl Send for JsonSyntaxTreeEnum
impl Sync for JsonSyntaxTreeEnum
impl Unpin for JsonSyntaxTreeEnum
impl !UnwindSafe for JsonSyntaxTreeEnum
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