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