pub struct YamlBlockScalarNode {
pub span: SourceSpan,
pub style: String,
pub chomping: Option<String>,
pub indent_indicator: Option<usize>,
pub chunks: Vec<YamlChunk>,
}Fields§
§span: SourceSpan§style: String§chomping: Option<String>§indent_indicator: Option<usize>§chunks: Vec<YamlChunk>Trait Implementations§
Source§impl Clone for YamlBlockScalarNode
impl Clone for YamlBlockScalarNode
Source§fn clone(&self) -> YamlBlockScalarNode
fn clone(&self) -> YamlBlockScalarNode
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 YamlBlockScalarNode
impl RefUnwindSafe for YamlBlockScalarNode
impl Send for YamlBlockScalarNode
impl Sync for YamlBlockScalarNode
impl Unpin for YamlBlockScalarNode
impl UnsafeUnpin for YamlBlockScalarNode
impl UnwindSafe for YamlBlockScalarNode
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