pub enum TomlStringPart {
Chunk(TomlStringChunkNode),
Interpolation(TomlInterpolationNode),
}Variants§
Chunk(TomlStringChunkNode)
Interpolation(TomlInterpolationNode)
Trait Implementations§
Source§impl Clone for TomlStringPart
impl Clone for TomlStringPart
Source§fn clone(&self) -> TomlStringPart
fn clone(&self) -> TomlStringPart
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 TomlStringPart
impl RefUnwindSafe for TomlStringPart
impl Send for TomlStringPart
impl Sync for TomlStringPart
impl Unpin for TomlStringPart
impl UnsafeUnpin for TomlStringPart
impl UnwindSafe for TomlStringPart
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