codeviz 0.0.15

Flexible code generator for Rust
Documentation
1
2
3
4
5
6
use errors::*;
use super::element_format::ElementFormat;

pub trait VariableFormat {
    fn format<E>(&self, out: &mut E, depth: usize) -> Result<()> where E: ElementFormat;
}