pub enum JsonValueNode {
String(JsonStringNode),
Literal(JsonLiteralNode),
Interpolation(JsonInterpolationNode),
Object(JsonObjectNode),
Array(JsonArrayNode),
}Variants§
String(JsonStringNode)
Literal(JsonLiteralNode)
Interpolation(JsonInterpolationNode)
Object(JsonObjectNode)
Array(JsonArrayNode)
Trait Implementations§
Source§impl Clone for JsonValueNode
impl Clone for JsonValueNode
Source§fn clone(&self) -> JsonValueNode
fn clone(&self) -> JsonValueNode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for JsonValueNode
impl RefUnwindSafe for JsonValueNode
impl Send for JsonValueNode
impl Sync for JsonValueNode
impl Unpin for JsonValueNode
impl UnsafeUnpin for JsonValueNode
impl UnwindSafe for JsonValueNode
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