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