pub enum TomlValueNode {
String(TomlStringNode),
Literal(TomlLiteralNode),
Interpolation(TomlInterpolationNode),
Array(TomlArrayNode),
InlineTable(TomlInlineTableNode),
}Variants§
String(TomlStringNode)
Literal(TomlLiteralNode)
Interpolation(TomlInterpolationNode)
Array(TomlArrayNode)
InlineTable(TomlInlineTableNode)
Trait Implementations§
Source§impl Clone for TomlValueNode
impl Clone for TomlValueNode
Source§fn clone(&self) -> TomlValueNode
fn clone(&self) -> TomlValueNode
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 TomlValueNode
impl RefUnwindSafe for TomlValueNode
impl Send for TomlValueNode
impl Sync for TomlValueNode
impl Unpin for TomlValueNode
impl UnsafeUnpin for TomlValueNode
impl UnwindSafe for TomlValueNode
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