pub struct TomlStringNode {
pub span: SourceSpan,
pub style: String,
pub chunks: Vec<TomlStringPart>,
}Fields§
§span: SourceSpan§style: String§chunks: Vec<TomlStringPart>Trait Implementations§
Source§impl Clone for TomlStringNode
impl Clone for TomlStringNode
Source§fn clone(&self) -> TomlStringNode
fn clone(&self) -> TomlStringNode
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 TomlStringNode
impl RefUnwindSafe for TomlStringNode
impl Send for TomlStringNode
impl Sync for TomlStringNode
impl Unpin for TomlStringNode
impl UnsafeUnpin for TomlStringNode
impl UnwindSafe for TomlStringNode
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