Function mml::src2both
[−]
[src]
pub fn src2both<P: AsRef<Path>>(src: P, dest: P) -> Result<()>
The function src2both
creates two files formated like a graph/dot and a structured vector graphics.
Examples
extern crate mml; fn main() { let _ = mml::src2both("src", concat!("target/doc/", env!("CARGO_PKG_NAME"))); }