mdbook-rustdoc-links 3.0.2

mdBook preprocessor to support intra-doc links
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::process::Command;

use crate::options::CommandRunner;

pub trait CommandRunnerUtil {
    fn runner(self, runner: &CommandRunner) -> Self;
}

impl CommandRunnerUtil for Command {
    fn runner(self, runner: &CommandRunner) -> Self {
        runner.command(self)
    }
}