Merge remote-tracking branch 'upstream/main' into blank-line-doctest
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
Emi Tatsuo 2020-12-07 18:27:26 -05:00
commit e44decab07
No known key found for this signature in database
GPG Key ID: 68FAB2E2E6DFC98B
1 changed files with 9 additions and 0 deletions

View File

@ -109,6 +109,15 @@ impl AsMut<[Node]> for Builder {
} }
} }
impl From<Builder> for Vec<Node> {
/// Convert into a collection of [`Node`]s.
///
/// Equivilent to calling [`Builder::build()`]
fn from(builder: Builder) -> Self {
builder.build()
}
}
/// Render a set of nodes as a document to a writer. /// Render a set of nodes as a document to a writer.
pub fn render(nodes: impl AsRef<[Node]>, out: &mut impl Write) -> io::Result<()> { pub fn render(nodes: impl AsRef<[Node]>, out: &mut impl Write) -> io::Result<()> {
use Node::*; use Node::*;