pub enum YamlValueNode {
Scalar(YamlScalarNode),
Interpolation(YamlInterpolationNode),
Mapping(YamlMappingNode),
Sequence(YamlSequenceNode),
Decorated(YamlDecoratedNode),
}Variants§
Scalar(YamlScalarNode)
Interpolation(YamlInterpolationNode)
Mapping(YamlMappingNode)
Sequence(YamlSequenceNode)
Decorated(YamlDecoratedNode)
Trait Implementations§
Source§impl Clone for YamlValueNode
impl Clone for YamlValueNode
Source§fn clone(&self) -> YamlValueNode
fn clone(&self) -> YamlValueNode
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 YamlValueNode
impl RefUnwindSafe for YamlValueNode
impl Send for YamlValueNode
impl Sync for YamlValueNode
impl Unpin for YamlValueNode
impl UnsafeUnpin for YamlValueNode
impl UnwindSafe for YamlValueNode
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