pub struct JsonStringNode {
pub span: SourceSpan,
pub chunks: Vec<JsonStringPart>,
pub quoted: bool,
}Fields§
§span: SourceSpan§chunks: Vec<JsonStringPart>§quoted: boolTrait Implementations§
Source§impl Clone for JsonStringNode
impl Clone for JsonStringNode
Source§fn clone(&self) -> JsonStringNode
fn clone(&self) -> JsonStringNode
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 JsonStringNode
impl RefUnwindSafe for JsonStringNode
impl Send for JsonStringNode
impl Sync for JsonStringNode
impl Unpin for JsonStringNode
impl UnsafeUnpin for JsonStringNode
impl UnwindSafe for JsonStringNode
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