mingling 0.1.0

A procedural command-line framework with subcommand support
Documentation
1
2
3
4
5
6
use crate::RenderResult;

pub trait Renderer {
    type Previous;
    fn render(p: Self::Previous, r: &mut RenderResult);
}