doku 0.21.1

A framework for documenting Rust data structures
Documentation
use super::*;

pub fn render<'a, O: Output<'a>>(out: &'a O) -> String {
    let mut result = String::new();

    for Line {
        id: line_id,
        indent,
        body,
        comments,
    } in out.lines()
    {
        swrite!(result, if line_id > 0, "\n");

        for comment in comments {
            swrite!(result, for 0..indent, " ");
            swrite!(result, "{} {}\n", out.comment_separator(), comment);
        }

        swrite!(result, for 0..indent, " ");
        swrite!(result, "{}", body);
    }

    result
}