pub struct JsonLiteralNode {
pub span: SourceSpan,
pub source: String,
pub value: Value,
}Fields§
§span: SourceSpan§source: String§value: ValueTrait Implementations§
Source§impl Clone for JsonLiteralNode
impl Clone for JsonLiteralNode
Source§fn clone(&self) -> JsonLiteralNode
fn clone(&self) -> JsonLiteralNode
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 JsonLiteralNode
impl RefUnwindSafe for JsonLiteralNode
impl Send for JsonLiteralNode
impl Sync for JsonLiteralNode
impl Unpin for JsonLiteralNode
impl UnsafeUnpin for JsonLiteralNode
impl UnwindSafe for JsonLiteralNode
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