Struct yaml_rust::emitter::YamlEmitter [−][src]
pub struct YamlEmitter<'a> { /* fields omitted */ }Methods
impl<'a> YamlEmitter<'a>[src]
impl<'a> YamlEmitter<'a>pub fn new(writer: &'a mut Write) -> YamlEmitter[src]
pub fn new(writer: &'a mut Write) -> YamlEmitterpub fn compact(&mut self, compact: bool)[src]
pub fn compact(&mut self, compact: bool)Set 'compact inline notation' on or off, as described for block sequences and mappings.
In this form, blocks cannot have any properties (such as anchors or tags), which should be OK, because this emitter doesn't (currently) emit those anyways.
pub fn is_compact(&self) -> bool[src]
pub fn is_compact(&self) -> boolDetermine if this emitter is using 'compact inline notation'.
pub fn dump(&mut self, doc: &Yaml) -> EmitResult[src]
pub fn dump(&mut self, doc: &Yaml) -> EmitResultAuto Trait Implementations
impl<'a> !Send for YamlEmitter<'a>
impl<'a> !Send for YamlEmitter<'a>impl<'a> !Sync for YamlEmitter<'a>
impl<'a> !Sync for YamlEmitter<'a>